| 61 | } |
| 62 | |
| 63 | static void thread_init(void) |
| 64 | { |
| 65 | if (pthread_key_create(&__timer_key, thread_free) != 0) { |
| 66 | abort(); |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | static void wakeup_waiter(SYNC_TIMER *timer UNUSED, SYNC_OBJ *obj) |
| 71 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…