1 /* 2 ** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved. 3 ** Distributed under the terms of the NewOS License. 4 */ 5 #ifndef _NEWOS_KERNEL_ARCH_TIMER_H 6 #define _NEWOS_KERNEL_ARCH_TIMER_H 7 8 #include <stage2.h> 9 10 void arch_timer_set_hardware_timer(bigtime_t timeout); 11 void arch_timer_clear_hardware_timer(void); 12 int arch_init_timer(kernel_args *ka); 13 14 #endif 15 16