Files
haiku-beta6/headers/private/kernel/arch/arm/arch_kernel_args.h
T

27 lines
639 B
C
Raw Normal View History

2009-07-27 16:23:08 +00:00
/*
** Copyright 2003, Axel Dörfler, [email protected]. All rights reserved.
** Distributed under the terms of the MIT License.
2009-07-27 16:23:08 +00:00
*/
2009-08-13 18:57:36 +00:00
#ifndef KERNEL_ARCH_ARM_KERNEL_ARGS_H
#define KERNEL_ARCH_ARM_KERNEL_ARGS_H
2009-07-27 16:23:08 +00:00
#ifndef KERNEL_BOOT_KERNEL_ARGS_H
# error This file is included from <boot/kernel_args.h> only
#endif
// kernel args
typedef struct {
int cpu_type;
int fpu_type;
int mmu_type;
int platform;
int machine; // platform specific machine type
2009-07-27 16:23:08 +00:00
// architecture specific
2009-08-13 18:57:36 +00:00
uint32 phys_pgdir;
uint32 vir_pgdir;
2014-09-07 04:45:14 +02:00
uint32 next_pagetable;
2009-07-27 16:23:08 +00:00
} arch_kernel_args;
2009-08-13 18:57:36 +00:00
#endif /* KERNEL_ARCH_ARM_KERNEL_ARGS_H */