| 21 | |
| 22 | |
| 23 | static inline int get_timer_id(struct TimerState* timers, struct Timer *tim) { |
| 24 | return (uint32_t) (tim - &timers->timers[0]); |
| 25 | } |
| 26 | |
| 27 | void print_timer(struct TimerState* timers, uint32_t id) { |
| 28 | struct Timer *t = &timers->timers[id]; |
no outgoing calls
no test coverage detected