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:
François Revol 2008-06-23 01:53:36 +00:00
parent 4237dbd0fc
commit 826e403de5
2 changed files with 31 additions and 0 deletions

View File

@ -7,6 +7,7 @@ SEARCH_SOURCE += [ FDirName $(SUBDIR) $(DOTDOT) generic ] ;
KernelMergeObject kernel_arch_ppc.o : KernelMergeObject kernel_arch_ppc.o :
arch_atomic.c arch_atomic.c
arch_commpage.cpp
arch_cpu.cpp arch_cpu.cpp
arch_cpu_asm.S arch_cpu_asm.S
arch_debug_console.cpp arch_debug_console.cpp

View 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;
}