| 857 | } watcher_blocked_run_t; |
| 858 | |
| 859 | static void *watcher_blocked_run_thread(void *opaque) { |
| 860 | watcher_blocked_run_t *run = opaque; |
| 861 | (void)cbm_watcher_run(run->watcher, 10); |
| 862 | atomic_store_explicit(&run->completed, true, memory_order_release); |
| 863 | return NULL; |
| 864 | } |
| 865 | |
| 866 | static bool watcher_test_self_image(char out[CBM_SZ_4K]) { |
| 867 | #ifdef __APPLE__ |
nothing calls this directly
no test coverage detected