| 55 | static pthread_key_t __timer_key; |
| 56 | |
| 57 | static void thread_free(void *ctx) |
| 58 | { |
| 59 | SYNC_TIMER *timer = (SYNC_TIMER*) ctx; |
| 60 | sync_timer_free(timer); |
| 61 | } |
| 62 | |
| 63 | static void thread_init(void) |
| 64 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…