1 #include <minix/timers.h>
4 * Use the current time to check the timers queue list for expired timers.
5 * Run the watchdog functions for all expired timers and deactivate them.
6 * The caller is responsible for scheduling a new alarm if needed.
9 tmrs_exptimers(minix_timer_t
** tmrs
, clock_t now
, clock_t * new_head
)
14 while ((tp
= *tmrs
) != NULL
&& tmr_has_expired(tp
, now
)) {
25 *new_head
= (*tmrs
)->tmr_exp_time
;