measure elapsed time in milliseconds More...
#include <system-wall-clock-ms.h>
Public Member Functions | |
| void | Start (void) |
| int64_t | End (void) |
| Stop measuring the time since Start() was called. | |
| int64_t | GetElapsedReal (void) const |
| int64_t | GetElapsedUser (void) const |
| int64_t | GetElapsedSystem (void) const |
measure elapsed time in milliseconds
| int64_t ns3::SystemWallClockMs::End | ( | void | ) |
Stop measuring the time since Start() was called.
It is possible to start a new measurement with ns3::SystemWallClockMs::Start after this method returns.
Returns int64_t to avoid dependency on clock_t in ns-3 code.
| int64_t ns3::SystemWallClockMs::GetElapsedReal | ( | void | ) | const |
Returns int64_t to avoid dependency on clock_t in ns-3 code.
| int64_t ns3::SystemWallClockMs::GetElapsedSystem | ( | void | ) | const |
Returns int64_t to avoid dependency on clock_t in ns-3 code.
| int64_t ns3::SystemWallClockMs::GetElapsedUser | ( | void | ) | const |
Returns int64_t to avoid dependency on clock_t in ns-3 code.
| void ns3::SystemWallClockMs::Start | ( | void | ) |
Start a measure.
1.6.1