a090257d09
But this still doesn't help with bug #1018... git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20231 a95241bf-73f2-0310-859d-f6bbb57e9c96
16 lines
441 B
C
16 lines
441 B
C
/*
|
|
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
** Distributed under the terms of the NewOS License.
|
|
*/
|
|
#ifndef _KERNEL_ARCH_x86_SMP_PRIV_H
|
|
#define _KERNEL_ARCH_x86_SMP_PRIV_H
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
int i386_smp_interrupt(int vector);
|
|
void arch_smp_ack_interrupt(void);
|
|
status_t arch_smp_set_apic_timer(bigtime_t relativeTimeout);
|
|
status_t arch_smp_clear_apic_timer(void);
|
|
|
|
#endif /* _KERNEL_ARCH_x86_SMP_PRIV_H */
|