xref: /haiku/src/system/kernel/arch/arm64/arch_commpage.cpp (revision cbe0a0c436162d78cc3f92a305b64918c839d079)
1 /*
2  * Copyright 2019 Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #include <commpage.h>
6 
7 #include <string.h>
8 
9 #include <KernelExport.h>
10 
11 #include <cpu.h>
12 #include <elf.h>
13 #include <smp.h>
14 
15 
16 status_t
17 arch_commpage_init(void)
18 {
19 	return B_OK;
20 }
21 
22 
23 status_t
24 arch_commpage_init_post_cpus(void)
25 {
26 	return B_OK;
27 }
28