1 /* 2 ** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved. 3 ** Distributed under the terms of the NewOS License. 4 */ 5 #ifndef _KERNEL_ARCH_x86_SMP_PRIV_H 6 #define _KERNEL_ARCH_x86_SMP_PRIV_H 7 8 #include <SupportDefs.h> 9 10 void arch_smp_ack_interrupt(void); 11 status_t arch_smp_set_apic_timer(bigtime_t relativeTimeout); 12 status_t arch_smp_clear_apic_timer(void); 13 14 #endif /* _KERNEL_ARCH_x86_SMP_PRIV_H */ 15