ldivmod, uldivmod: fix qdivrem calls
[minix.git] / include / minix / timers.h
blobe30701e24aae6a276709ad0c44324384aa1c0179
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.
6 */
8 #include <timers.h>
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 */