| 660 | |
| 661 | |
| 662 | void reset_timer_list(unsigned int set, enum lists list_id) |
| 663 | { |
| 664 | timertable[set].timers[list_id].first_tl.next_tl = |
| 665 | &(timertable[set].timers[list_id].last_tl ); |
| 666 | timertable[set].timers[list_id].last_tl.prev_tl = |
| 667 | &(timertable[set].timers[list_id].first_tl ); |
| 668 | timertable[set].timers[list_id].first_tl.prev_tl = |
| 669 | timertable[set].timers[list_id].last_tl.next_tl = NULL; |
| 670 | timertable[set].timers[list_id].last_tl.time_out = -1; |
| 671 | } |
| 672 | |
| 673 | |
| 674 | void init_timer_list(unsigned int set, enum lists list_id) |
no outgoing calls
no test coverage detected