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 int i386_smp_interrupt(int vector); 11 void arch_smp_ack_interrupt(void); 12 status_t arch_smp_set_apic_timer(bigtime_t relativeTimeout); 13 int arch_smp_clear_apic_timer(void); 14 15 #endif /* _KERNEL_ARCH_x86_SMP_PRIV_H */ 16