xref: /haiku/src/system/boot/platform/efi/arch/x86/arch_smp.cpp (revision 9e25244c5e9051f6cd333820d6332397361abd6c)
1 /*
2  * Copyright 2021 Haiku, Inc. All rights reserved.
3  * Released under the terms of the MIT License.
4  */
5 
6 
7 #include "arch_smp.h"
8 
9 
10 int
11 arch_smp_get_current_cpu(void)
12 {
13 	return 0;
14 }
15 
16 
17 void
18 arch_smp_init_other_cpus(void)
19 {
20 }
21 
22 
23 void
24 arch_smp_boot_other_cpus(uint32 pml4, uint64 kernel_entry)
25 {
26 }
27 
28 
29 void
30 arch_smp_add_safemode_menus(Menu *menu)
31 {
32 }
33 
34 
35 void
36 arch_smp_init(void)
37 {
38 }
39