| 25 | /* ── Serial fallback ─────────────────────────────────────────────── */ |
| 26 | |
| 27 | static 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 |
no outgoing calls
no test coverage detected