1 /* 2 * Copyright 2007, Haiku Inc. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * François Revol <revol@free.fr> 7 * 8 * Copyright 2004, Axel Dörfler, axeld@pinc-software.de 9 * Distributed under the terms of the OpenBeOS License. 10 */ 11 12 13 #include <KernelExport.h> 14 15 #include <boot/stage2.h> 16 #include <arch/smp.h> 17 #include <debug.h> 18 19 20 status_t 21 arch_smp_init(kernel_args *args) 22 { 23 return B_OK; 24 } 25 26 27 status_t 28 arch_smp_per_cpu_init(kernel_args *args, int32 cpu) 29 { 30 return B_OK; 31 } 32 33 34 void 35 arch_smp_send_ici(int32 target_cpu) 36 { 37 panic("called arch_smp_send_ici!\n"); 38 } 39 40 41 void 42 arch_smp_send_broadcast_ici() 43 { 44 panic("called arch_smp_send_broadcast_ici\n"); 45 } 46 47