
Headers that will be shared between old includes and NetBSD-like includes are moved into common/include tree. They are still copied in /usr/include in 'make includes', so compilation and programs aren't be affected.
17 lines
447 B
C
17 lines
447 B
C
#ifndef _MINIX_TIMERS_H
|
|
#define _MINIX_TIMERS_H
|
|
|
|
/* Timers abstraction for system processes. This would be in minix/sysutil.h
|
|
* if it weren't for naming conflicts.
|
|
*/
|
|
|
|
#include <timers.h>
|
|
|
|
_PROTOTYPE( void init_timer, (timer_t *tp));
|
|
_PROTOTYPE( void set_timer, (timer_t *tp, int ticks, tmr_func_t watchdog,
|
|
int arg));
|
|
_PROTOTYPE( void cancel_timer, (timer_t *tp));
|
|
_PROTOTYPE( void expire_timers, (clock_t now));
|
|
|
|
#endif /* _MINIX_TIMERS_H */
|