MCPcopy Create free account
hub / github.com/abbeycode/UnrarKit / MonoClock

Function MonoClock

Libraries/unrar/system.cpp:73–76  ·  view source on GitHub ↗

Monotonic clock. Like clock(), returns time passed in CLOCKS_PER_SEC items. In Android 5+ and Unix usual clock() returns time spent by all threads together, so we cannot use it to measure time intervals anymore.

Source from the content-addressed store, hash-verified

71// In Android 5+ and Unix usual clock() returns time spent by all threads
72// together, so we cannot use it to measure time intervals anymore.
73clock_t MonoClock()
74{
75 return clock();
76}
77
78
79

Callers 2

uiAlarmFunction · 0.85
WaitFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected