| 97 | |
| 98 | |
| 99 | static void |
| 100 | list_remove( Timer* t ) |
| 101 | { |
| 102 | if ( t->prev == NULL ) |
| 103 | timers = t->next; |
| 104 | else |
| 105 | t->prev->next = t->next; |
| 106 | if ( t->next != NULL ) |
| 107 | t->next->prev = t->prev; |
| 108 | } |
| 109 | |
| 110 | |
| 111 | static void |
no outgoing calls
no test coverage detected
searching dependent graphs…