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