| 27 | |
| 28 | |
| 29 | static struct heap *timer_heap(const uv_loop_t* loop) { |
| 30 | #ifdef _WIN32 |
| 31 | return (struct heap*) loop->timer_heap; |
| 32 | #else |
| 33 | return (struct heap*) &loop->timer_heap; |
| 34 | #endif |
| 35 | } |
| 36 | |
| 37 | |
| 38 | static int timer_less_than(const struct heap_node* ha, |
no outgoing calls
no test coverage detected
searching dependent graphs…