MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / cbm_now_ns

Function cbm_now_ns

src/foundation/platform.c:135–140  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

133}
134
135uint64_t cbm_now_ns(void) {
136 LARGE_INTEGER freq, count;
137 QueryPerformanceFrequency(&freq);
138 QueryPerformanceCounter(&count);
139 return cbm_platform_scale_counter_ns((uint64_t)count.QuadPart, (uint64_t)freq.QuadPart);
140}
141
142#define CBM_USEC_PER_SEC 1000000ULL
143

Callers 4

cbm_now_msFunction · 0.85
platform_time_first_callFunction · 0.85
test_platform.cFile · 0.85

Calls 1

Tested by 1

platform_time_first_callFunction · 0.68