Fixed the PPC kernel build; now in sync again with the changes made

to arch/thread.h and arch/smp.h.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7641 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-05-25 16:33:47 +00:00
parent 7513f62a98
commit 5aacd7f134
2 changed files with 15 additions and 7 deletions

View File

@ -1,6 +1,6 @@
/* /*
** Copyright 2001, Travis Geiselbrecht. All rights reserved. ** Copyright 2004, Axel Dörfler, axeld@pinc-software.de
** Distributed under the terms of the NewOS License. ** Distributed under the terms of the OpenBeOS License.
*/ */
@ -11,15 +11,22 @@
#include <debug.h> #include <debug.h>
int status_t
arch_smp_init(kernel_args *ka) arch_smp_init(kernel_args *args)
{ {
return 0; return B_OK;
}
status_t
arch_smp_per_cpu_init(kernel_args *args, int32 cpu)
{
return B_OK;
} }
void void
arch_smp_send_ici(int target_cpu) arch_smp_send_ici(int32 target_cpu)
{ {
panic("called arch_smp_send_ici!\n"); panic("called arch_smp_send_ici!\n");
} }

View File

@ -109,9 +109,10 @@ arch_thread_enter_uspace(struct thread *thread, addr entry, void *arg1, void *ar
} }
void status_t
arch_setup_signal_frame(struct thread *thread, struct sigaction *sa, int sig, int sigMask) arch_setup_signal_frame(struct thread *thread, struct sigaction *sa, int sig, int sigMask)
{ {
return B_ERROR;
} }