xref: /haiku/src/system/kernel/arch/mips/arch_smp.cpp (revision 579f1dbca962a2a03df54f69fdc6e9423f91f20e)
1 /*
2 ** Copyright 2001, Travis Geiselbrecht. All rights reserved.
3 ** Distributed under the terms of the NewOS License.
4 */
5 #include <kernel/debug.h>
6 #include <kernel/arch/smp.h>
7 
8 int arch_smp_init(kernel_args *ka)
9 {
10 	return 0;
11 }
12 
13 int arch_smp_get_current_cpu()
14 {
15 	return 0;
16 }
17 
18 void arch_smp_send_ici(int target_cpu)
19 {
20 	panic("called arch_smp_send_ici!\n");
21 }
22 
23 void arch_smp_send_broadcast_ici()
24 {
25 	panic("called arch_smp_send_broadcast_ici\n");
26 }
27 
28