1/*
2 * Copyright 2007-2009, 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 *		Jonas Sundstr��m <jonas@kirilla.com>
8 *
9 * Copyright 2004, Axel D��rfler, axeld@pinc-software.de
10 * Distributed under the terms of the OpenBeOS License.
11 */
12
13
14#include <KernelExport.h>
15
16#include <boot/stage2.h>
17#include <arch/smp.h>
18#include <debug.h>
19
20
21status_t
22arch_smp_init(kernel_args* args)
23{
24#warning IMPLEMENT arch_smp_init
25	return B_ERROR;
26}
27
28
29status_t
30arch_smp_per_cpu_init(kernel_args* args, int32 cpu)
31{
32#warning IMPLEMENT arch_smp_per_cpu_init
33	return B_ERROR;
34}
35
36
37void
38arch_smp_send_ici(int32 target_cpu)
39{
40#warning IMPLEMENT arch_smp_send_ici
41	panic("called arch_smp_send_ici!\n");
42}
43
44
45void
46arch_smp_send_broadcast_ici()
47{
48#warning IMPLEMENT arch_smp_send_broadcast_ici
49	panic("called arch_smp_send_broadcast_ici\n");
50}
51
52