| 88 | */ |
| 89 | |
| 90 | int |
| 91 | my_os_timer_init_ext(void) |
| 92 | { |
| 93 | int rc; |
| 94 | |
| 95 | /* Create a file descriptor for event notification. */ |
| 96 | if ((kq_fd= kqueue()) < 0) |
| 97 | return -1; |
| 98 | |
| 99 | /* Create a helper thread. */ |
| 100 | if ((rc= start_helper_thread())) |
| 101 | close(kq_fd); |
| 102 | |
| 103 | return rc; |
| 104 | } |
| 105 | |
| 106 | |
| 107 | /** |
nothing calls this directly
no test coverage detected