xref: /haiku/src/system/kernel/arch/sparc/arch_commpage.cpp (revision 68ea01249e1e2088933cb12f9c28d4e5c5d1c9ef)
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 	return B_OK;
21 }
22 
23 
24 status_t
25 arch_commpage_init_post_cpus(void)
26 {
27 	return B_OK;
28 }
29 
30