xref: /haiku/src/tests/system/boot/loader/platform_kernel_args.h (revision d3d8b26997fac34a84981e6d2b649521de2cc45a)
1 /*
2 ** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 ** Distributed under the terms of the OpenBeOS License.
4 */
5 #ifndef PLATFORM_KERNEL_ARGS_H
6 #define PLATFORM_KERNEL_ARGS_H
7 
8 // must match SMP_MAX_CPUS in arch_smp.h
9 #define MAX_BOOT_CPUS 4
10 #define MAX_PHYSICAL_MEMORY_RANGE 4
11 #define MAX_PHYSICAL_ALLOCATED_RANGE 4
12 #define MAX_VIRTUAL_ALLOCATED_RANGE 4
13 
14 struct platform_kernel_args {
15 	/* they are just empty! */
16 };
17 
18 #endif	/* PLATFORM_KERNEL_ARGS_H */
19