xref: /haiku/src/system/kernel/arch/m68k/arch_commpage.cpp (revision 4f2fd49bdc6078128b1391191e4edac647044c3d)
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 <elf.h>
15 #include <smp.h>
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 	// add syscall to the commpage image
25 	image_id image = get_commpage_image();
26 
27 	return B_OK;
28 }
29 
30