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

Function run_serial

src/pipeline/worker_pool.c:27–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25/* ── Serial fallback ─────────────────────────────────────────────── */
26
27static void run_serial(int count, cbm_parallel_fn fn, void *ctx) {
28 for (int i = 0; i < count; i++) {
29 fn(i, ctx);
30 }
31}
32
33/* ── pthreads backend ────────────────────────────────────────────── */
34

Callers 2

run_pthreadsFunction · 0.85
cbm_parallel_forFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected