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

Function application_deadline_after

src/daemon/application.c:267–270  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

265}
266
267static uint64_t application_deadline_after(uint32_t timeout_ms) {
268 uint64_t now = cbm_now_ms();
269 return now > UINT64_MAX - timeout_ms ? UINT64_MAX : now + timeout_ms;
270}
271
272static _Noreturn void application_cleanup_force_terminate(const char *component) {
273 /* In production this module is daemon-owned and the host log sink flushes

Calls 1

cbm_now_msFunction · 0.85

Tested by

no test coverage detected