| 139 | /* ── Watcher background thread ──────────────────────────────────── */ |
| 140 | |
| 141 | static void *watcher_thread(void *arg) { |
| 142 | cbm_watcher_t *w = arg; |
| 143 | #define WATCHER_BASE_INTERVAL_MS 5000 |
| 144 | |
| 145 | cbm_watcher_run(w, WATCHER_BASE_INTERVAL_MS); |
| 146 | return NULL; |
| 147 | } |
| 148 | |
| 149 | /* ── HTTP UI background thread ──────────────────────────────────── */ |
| 150 |
nothing calls this directly
no test coverage detected