Files
haiku-beta6/src/system/kernel/arch/mipsel/arch_smp.cpp
T
Ingo Weinhold bd185b4117 *.c -> *.cpp
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34417 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-12-01 17:06:26 +00:00

52 lines
902 B
C++

/*
* Copyright 2007-2009, Haiku Inc. All rights reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
* François Revol <[email protected]>
* Jonas Sundström <[email protected]>
*
* Copyright 2004, Axel Dörfler, [email protected]
* Distributed under the terms of the OpenBeOS License.
*/
#include <KernelExport.h>
#include <boot/stage2.h>
#include <arch/smp.h>
#include <debug.h>
status_t
arch_smp_init(kernel_args* args)
{
#warning IMPLEMENT arch_smp_init
return B_ERROR;
}
status_t
arch_smp_per_cpu_init(kernel_args* args, int32 cpu)
{
#warning IMPLEMENT arch_smp_per_cpu_init
return B_ERROR;
}
void
arch_smp_send_ici(int32 target_cpu)
{
#warning IMPLEMENT arch_smp_send_ici
panic("called arch_smp_send_ici!\n");
}
void
arch_smp_send_broadcast_ici()
{
#warning IMPLEMENT arch_smp_send_broadcast_ici
panic("called arch_smp_send_broadcast_ici\n");
}