| 109 | |
| 110 | |
| 111 | static void |
| 112 | list_resort( Timer* t ) |
| 113 | { |
| 114 | /* Remove the timer from the list. */ |
| 115 | list_remove( t ); |
| 116 | /* And add it back in, sorted correctly. */ |
| 117 | list_add( t ); |
| 118 | } |
| 119 | |
| 120 | |
| 121 | Timer* |
no test coverage detected
searching dependent graphs…