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

Function itoa_log

src/pipeline/pass_parallel.c:326–333  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

324}
325
326static const char *itoa_log(int val) {
327 static CBM_TLS char bufs[PP_RING][CBM_SZ_32];
328 static CBM_TLS int idx = 0;
329 int i = idx;
330 idx = (idx + SKIP_ONE) & PP_RING_MASK;
331 snprintf(bufs[i], sizeof(bufs[i]), "%d", val);
332 return bufs[i];
333}
334
335/* Append a JSON-escaped string value to buf at position *pos. */
336/* Escape one character for JSON. Returns bytes written (1 or 2). */

Callers 8

log_extract_failFunction · 0.70
log_extract_doneFunction · 0.70
extract_workerFunction · 0.70
log_extract_mem_statsFunction · 0.70
cbm_parallel_extract_exFunction · 0.70
resolve_workerFunction · 0.70
cbm_parallel_resolveFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected