btrfs: Attempt to fix GCC2 build.
[haiku.git] / src / system / kernel / arch / arm / arch_smp.cpp
blob6c51cd029180049bf56f3e71bd35a4cecc5a8869
1 /*
2 * Copyright 2007, Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * François Revol <revol@free.fr>
8 * Copyright 2004, Axel Dörfler, axeld@pinc-software.de
9 * Distributed under the terms of the MIT License.
13 #include <KernelExport.h>
15 #include <boot/stage2.h>
16 #include <arch/smp.h>
17 #include <debug.h>
18 #include <int.h>
21 status_t
22 arch_smp_init(kernel_args *args)
24 return B_OK;
28 status_t
29 arch_smp_per_cpu_init(kernel_args *args, int32 cpu)
31 return B_OK;
35 void
36 arch_smp_send_multicast_ici(CPUSet& cpuSet)
38 #if KDEBUG
39 if (are_interrupts_enabled())
40 panic("arch_smp_send_multicast_ici: called with interrupts enabled");
41 #endif
45 void
46 arch_smp_send_ici(int32 target_cpu)
48 panic("called arch_smp_send_ici!\n");
52 void
53 arch_smp_send_broadcast_ici()
55 panic("called arch_smp_send_broadcast_ici\n");