| 90 | } |
| 91 | |
| 92 | static void |
| 93 | l_remove(Timer *t) |
| 94 | { |
| 95 | int h = t->hash; |
| 96 | |
| 97 | if (t->prev == (Timer *)0) |
| 98 | timers[h] = t->next; |
| 99 | else |
| 100 | t->prev->next = t->next; |
| 101 | if (t->next != (Timer *)0) |
| 102 | t->next->prev = t->prev; |
| 103 | } |
| 104 | |
| 105 | static void |
| 106 | l_resort(Timer *t) |
no outgoing calls
no test coverage detected