MCPcopy Create free account
hub / github.com/NativeScript/android / now_ms

Function now_ms

test-app/runtime/src/main/cpp/Timers.cpp:42–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40}
41
42static double now_ms() {
43 struct timespec res;
44 clock_gettime(CLOCK_MONOTONIC, &res);
45 return 1000.0 * res.tv_sec + (double) res.tv_nsec / 1e6;
46}
47
48namespace tns {
49

Callers 3

addTaskMethod · 0.85
threadLoopMethod · 0.85
SetTimerMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected