headers/bsd: Add sys/queue.h.
[haiku.git] / src / system / kernel / arch / ppc / arch_smp.cpp
blobb673592686070662e5d46fd326750668a1a2adcd
1 /*
2 ** Copyright 2004, Axel Dörfler, axeld@pinc-software.de
3 ** Distributed under the terms of the MIT License.
4 */
7 #include <KernelExport.h>
9 #include <boot/stage2.h>
10 #include <arch/smp.h>
11 #include <debug.h>
14 status_t
15 arch_smp_init(kernel_args *args)
17 return B_OK;
21 status_t
22 arch_smp_per_cpu_init(kernel_args *args, int32 cpu)
24 return B_OK;
28 void
29 arch_smp_send_ici(int32 target_cpu)
31 panic("called arch_smp_send_ici!\n");
35 void
36 arch_smp_send_broadcast_ici()
38 panic("called arch_smp_send_broadcast_ici\n");