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

Function extract_now_ns

src/pipeline/pass_parallel.c:221–225  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

219}
220
221static uint64_t extract_now_ns(void) {
222 struct timespec ts;
223 cbm_clock_gettime(CLOCK_MONOTONIC, &ts);
224 return ((uint64_t)ts.tv_sec * PP_NSEC_PER_SEC) + (uint64_t)ts.tv_nsec;
225}
226
227/* ── Helpers (duplicated from pass files — kept static for isolation) ── */
228

Callers 3

extract_workerFunction · 0.85
resolve_file_callsFunction · 0.85
resolve_workerFunction · 0.85

Calls 1

cbm_clock_gettimeFunction · 0.85

Tested by

no test coverage detected