2002-07-09 12:24:59 +00:00
|
|
|
/*
|
|
|
|
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
|
|
** Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
2003-01-30 21:20:33 +00:00
|
|
|
#ifndef _KERNEL_ARCH_x86_SMP_PRIV_H
|
|
|
|
#define _KERNEL_ARCH_x86_SMP_PRIV_H
|
2002-07-09 12:24:59 +00:00
|
|
|
|
2004-03-14 22:54:00 +00:00
|
|
|
#include <SupportDefs.h>
|
2003-05-03 13:26:32 +00:00
|
|
|
|
2002-07-09 12:24:59 +00:00
|
|
|
int i386_smp_interrupt(int vector);
|
|
|
|
void arch_smp_ack_interrupt(void);
|
2004-03-14 22:54:00 +00:00
|
|
|
status_t arch_smp_set_apic_timer(bigtime_t relativeTimeout);
|
2002-07-09 12:24:59 +00:00
|
|
|
int arch_smp_clear_apic_timer(void);
|
|
|
|
|
2003-01-30 21:20:33 +00:00
|
|
|
#endif /* _KERNEL_ARCH_x86_SMP_PRIV_H */
|