1 #ifndef _MINIX_TIMERS_H
2 #define _MINIX_TIMERS_H
4 /* Timers abstraction for system processes. This would be in minix/sysutil.h
5 * if it weren't for naming conflicts.
10 void init_timer(timer_t
*tp
);
11 void set_timer(timer_t
*tp
, int ticks
, tmr_func_t watchdog
, int arg
);
12 void cancel_timer(timer_t
*tp
);
13 void expire_timers(clock_t now
);
15 #endif /* _MINIX_TIMERS_H */