2002-07-09 16:24:59 +04:00
|
|
|
/*
|
|
|
|
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
|
|
** Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
2003-01-31 00:20:33 +03:00
|
|
|
#ifndef _KERNEL_ARCH_x86_SMP_PRIV_H
|
|
|
|
#define _KERNEL_ARCH_x86_SMP_PRIV_H
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2003-05-03 17:26:32 +04:00
|
|
|
#include <ktypes.h>
|
|
|
|
|
2002-07-09 16:24:59 +04:00
|
|
|
int i386_smp_interrupt(int vector);
|
|
|
|
void arch_smp_ack_interrupt(void);
|
|
|
|
int arch_smp_set_apic_timer(bigtime_t relative_timeout);
|
|
|
|
int arch_smp_clear_apic_timer(void);
|
|
|
|
|
2003-01-31 00:20:33 +03:00
|
|
|
#endif /* _KERNEL_ARCH_x86_SMP_PRIV_H */
|