Stubbed commpage stuff for ppc. Someone writeme please...
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26093 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
4237dbd0fc
commit
826e403de5
@ -7,6 +7,7 @@ SEARCH_SOURCE += [ FDirName $(SUBDIR) $(DOTDOT) generic ] ;
|
||||
|
||||
KernelMergeObject kernel_arch_ppc.o :
|
||||
arch_atomic.c
|
||||
arch_commpage.cpp
|
||||
arch_cpu.cpp
|
||||
arch_cpu_asm.S
|
||||
arch_debug_console.cpp
|
||||
|
30
src/system/kernel/arch/ppc/arch_commpage.cpp
Normal file
30
src/system/kernel/arch/ppc/arch_commpage.cpp
Normal file
@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Copyright 2007, Travis Geiselbrecht. All rights reserved.
|
||||
* Distributed under the terms of the MIT License.
|
||||
*/
|
||||
|
||||
|
||||
#include <commpage.h>
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include <KernelExport.h>
|
||||
|
||||
#include <cpu.h>
|
||||
#include <smp.h>
|
||||
|
||||
|
||||
// user syscall assembly stubs
|
||||
extern "C" void _user_syscall_int(void);
|
||||
extern unsigned int _user_syscall_int_end;
|
||||
extern "C" void _user_syscall_sysenter(void);
|
||||
extern unsigned int _user_syscall_sysenter_end;
|
||||
|
||||
|
||||
status_t
|
||||
arch_commpage_init(void)
|
||||
{
|
||||
#error WRITEME
|
||||
return B_OK;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user