haiku/headers/private/kernel/arch/smp.h

26 lines
505 B
C
Raw Normal View History

/*
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
** Distributed under the terms of the NewOS License.
*/
#ifndef KERNEL_ARCH_SMP_H
#define KERNEL_ARCH_SMP_H
#include <kernel.h>
2013-12-21 01:05:26 +04:00
struct kernel_args;
2013-12-19 22:20:10 +04:00
class CPUSet;
2013-12-21 01:05:26 +04:00
status_t arch_smp_init(kernel_args* args);
status_t arch_smp_per_cpu_init(kernel_args* args, int32 cpu);
void arch_smp_send_ici(int32 target_cpu);
2013-12-21 01:05:26 +04:00
void arch_smp_send_broadcast_ici();
2013-12-19 22:20:10 +04:00
void arch_smp_send_multicast_ici(CPUSet& cpuSet);
#endif /* KERNEL_ARCH_SMP_H */