xref: /haiku/src/system/kernel/arch/m68k/arch_commpage.cpp (revision 746cac055adc6ac3308c7bc2d29040fb95689cc9)
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 status_t
19 arch_commpage_init(void)
20 {
21 	/* no optimized memcpy or anything yet */
22 	/* we don't use it for syscall yet either */
23 	return B_OK;
24 }
25 
26