xref: /haiku/src/system/kernel/arch/ppc/arch_commpage.cpp (revision 38ff098d8092647b57d197c537338ac2ef03a58f)
1 /*
2  * Copyright 2007, Travis Geiselbrecht. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include <commpage.h>
8 
9 #include <string.h>
10 
11 #include <KernelExport.h>
12 
13 #include <cpu.h>
14 #include <smp.h>
15 
16 
17 
18 
19 status_t
20 arch_commpage_init(void)
21 {
22 	/* no optimized memcpy or anything yet */
23 	/* we don't use it for syscall yet either */
24 	return B_OK;
25 }
26 
27