diff options
Diffstat (limited to 'kern')
-rw-r--r-- | kern/mach_clock.c | 6 | ||||
-rw-r--r-- | kern/mach_clock.h | 8 |
2 files changed, 9 insertions, 5 deletions
diff --git a/kern/mach_clock.c b/kern/mach_clock.c index c68b460..f4a7714 100644 --- a/kern/mach_clock.c +++ b/kern/mach_clock.c @@ -499,13 +499,13 @@ void mapable_time_init(void) update_mapped_time(&time); } -int timeopen(void) +int timeopen(dev_t dev, int flag, io_req_t ior) { return(0); } -int timeclose(void) +void timeclose(dev_t dev, int flag) { - return(0); + return; } /* diff --git a/kern/mach_clock.h b/kern/mach_clock.h index 827cf86..89fd335 100644 --- a/kern/mach_clock.h +++ b/kern/mach_clock.h @@ -29,6 +29,10 @@ #include <mach/time_value.h> #include <kern/host.h> #include <kern/queue.h> +#include <sys/types.h> + +struct io_req; +typedef struct io_req *io_req_t; /* Timers in kernel. */ @@ -104,7 +108,7 @@ extern void mapable_time_init (void); extern void timeout(timer_func_t *fcn, void *param, int interval); extern boolean_t untimeout(timer_func_t *fcn, const void *param); -extern int timeopen(void); -extern int timeclose(void); +extern int timeopen(dev_t dev, int flag, io_req_t ior); +extern void timeclose(dev_t dev, int flag); #endif /* _KERN_MACH_CLOCK_H_ */ |