A Discrete-Event Network Simulator
API
Public Member Functions | Private Attributes | List of all members
ns3::SystemWallClockMs Class Reference

Measure elapsed wall clock time in milliseconds. More...

#include "system-wall-clock-ms.h"

Public Member Functions

 SystemWallClockMs ()
 
 ~SystemWallClockMs ()
 
int64_t End (void)
 Stop measuring the time since Start() was called. More...
 
int64_t GetElapsedReal (void) const
 
int64_t GetElapsedSystem (void) const
 
int64_t GetElapsedUser (void) const
 
void Start (void)
 Start a measure. More...
 

Private Attributes

class SystemWallClockMsPrivatem_priv
 The implementation. More...
 

Detailed Description

Measure elapsed wall clock time in milliseconds.

Definition at line 53 of file system-wall-clock-ms.h.

Constructor & Destructor Documentation

◆ SystemWallClockMs()

ns3::SystemWallClockMs::SystemWallClockMs ( )

Definition at line 145 of file unix-system-wall-clock-ms.cc.

References NS_LOG_FUNCTION.

◆ ~SystemWallClockMs()

ns3::SystemWallClockMs::~SystemWallClockMs ( )

Definition at line 151 of file unix-system-wall-clock-ms.cc.

References m_priv, and NS_LOG_FUNCTION.

Member Function Documentation

◆ End()

int64_t ns3::SystemWallClockMs::End ( void  )

Stop measuring the time since Start() was called.

Returns
the measured elapsed wall clock time (in milliseconds) since Start() was invoked.

It is possible to start a new measurement with Start() after this method returns.

Returns int64_t to avoid dependency on clock_t in ns-3 code.

Definition at line 166 of file unix-system-wall-clock-ms.cc.

References ns3::SystemWallClockMsPrivate::End(), m_priv, and NS_LOG_FUNCTION.

Referenced by Bench::RunBench(), and runBenchOneIteration().

◆ GetElapsedReal()

int64_t ns3::SystemWallClockMs::GetElapsedReal ( void  ) const
Returns
the measured elapsed wall clock time (in milliseconds) since Start() was invoked.

Returns int64_t to avoid dependency on clock_t in ns-3 code.

Definition at line 173 of file unix-system-wall-clock-ms.cc.

References ns3::SystemWallClockMsPrivate::GetElapsedReal(), m_priv, and NS_LOG_FUNCTION.

◆ GetElapsedSystem()

int64_t ns3::SystemWallClockMs::GetElapsedSystem ( void  ) const
Returns
the measured elapsed 'system' wall clock time (in milliseconds) since Start() was invoked.

Returns int64_t to avoid dependency on clock_t in ns-3 code.

Definition at line 187 of file unix-system-wall-clock-ms.cc.

References ns3::SystemWallClockMsPrivate::GetElapsedSystem(), m_priv, and NS_LOG_FUNCTION.

◆ GetElapsedUser()

int64_t ns3::SystemWallClockMs::GetElapsedUser ( void  ) const
Returns
the measured elapsed 'user' wall clock time (in milliseconds) since Start() was invoked.

Returns int64_t to avoid dependency on clock_t in ns-3 code.

Definition at line 180 of file unix-system-wall-clock-ms.cc.

References ns3::SystemWallClockMsPrivate::GetElapsedUser(), m_priv, and NS_LOG_FUNCTION.

◆ Start()

void ns3::SystemWallClockMs::Start ( void  )

Member Data Documentation

◆ m_priv

class SystemWallClockMsPrivate* ns3::SystemWallClockMs::m_priv
private

The implementation.

Definition at line 97 of file system-wall-clock-ms.h.

Referenced by End(), GetElapsedReal(), GetElapsedSystem(), GetElapsedUser(), Start(), and ~SystemWallClockMs().


The documentation for this class was generated from the following files: