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