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

Function host_deadline_after

src/daemon/host.c:166–169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

164}
165
166static uint64_t host_deadline_after(uint32_t timeout_ms) {
167 uint64_t now = cbm_now_ms();
168 return now > UINT64_MAX - timeout_ms ? UINT64_MAX : now + timeout_ms;
169}
170
171static uint64_t host_current_process_id(void) {
172#ifdef _WIN32

Callers 2

cbm_daemon_host_runFunction · 0.85

Calls 1

cbm_now_msFunction · 0.85

Tested by

no test coverage detected