MCPcopy Create free account
hub / github.com/SIPp/sipp / getmilliseconds

Function getmilliseconds

src/time.cpp:91–94  ·  view source on GitHub ↗

Returns the number of milliseconds that have passed since SIPp started. Also updates the current clock_tick.

Source from the content-addressed store, hash-verified

89// Returns the number of milliseconds that have passed since SIPp
90// started. Also updates the current clock_tick.
91unsigned long getmilliseconds()
92{
93 return getmicroseconds() / MICROSECONDS_PER_MILLISECOND;
94}
95
96// Sleeps for the given number of microseconds. Avoids the potential
97// EINVAL when using usleep() to sleep for a second or more.

Callers 10

runMethod · 0.85
rtpstream.cppFile · 0.85
runMethod · 0.85
set_rateMethod · 0.85
reportMethod · 0.85
runMethod · 0.85
executeMessageMethod · 0.85
update_clock_tickFunction · 0.85
watchdogMethod · 0.85

Calls 1

getmicrosecondsFunction · 0.85

Tested by

no test coverage detected