MCPcopy Create free account
hub / github.com/apache/qpid-proton / now

Method now

cpp/src/timestamp.cpp:41–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39#ifdef WIN32
40
41timestamp timestamp::now() {
42 FILETIME now;
43 GetSystemTimeAsFileTime(&now);
44 ULARGE_INTEGER t;
45 t.u.HighPart = now.dwHighDateTime;
46 t.u.LowPart = now.dwLowDateTime;
47 // Convert to milliseconds and adjust base epoch
48 return timestamp(t.QuadPart / 10000 - 11644473600000);
49}
50
51#else
52

Callers 13

runMethod · 0.45
run_oneMethod · 0.45
tickMethod · 0.45
processMethod · 0.45
insertMethod · 0.45
wait_portFunction · 0.45
processFunction · 0.45
runFunction · 0.45

Calls 2

errorClass · 0.85
timestampClass · 0.50

Tested by 7

wait_portFunction · 0.36
processFunction · 0.36
runFunction · 0.36