1 /* 2 * Copyright 2008, Dustin Howett, dustin.howett@gmail.com. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _KERNEL_ARCH_x86_TIMERS_PIT_H 6 #define _KERNEL_ARCH_x86_TIMERS_PIT_H 7 8 #include <SupportDefs.h> 9 10 /* Method Prototypes */ 11 static int pit_get_prio(void); 12 static status_t pit_set_hardware_timer(bigtime_t relativeTimeout); 13 static status_t pit_clear_hardware_timer(void); 14 static status_t pit_init(struct kernel_args *args); 15 16 #endif /* _KERNEL_ARCH_x86_TIMERS_PIT_H */ 17