- Define structure pointer to NULL to make the compiler happy
[AROS.git] / rom / processor / processor_intern.h
blob50a83f14bb9cadca5c93f480744044bff5ff4fec
1 /*
2 Copyright © 2010-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Internal data structures for processor.resource
6 Lang: english
7 */
9 #ifndef PROCESSOR_INTERN_H
10 #define PROCESSOR_INTERN_H
12 #ifndef EXEC_TYPES_H
13 #include <exec/types.h>
14 #endif
15 #ifndef EXEC_NODES_H
16 #include <exec/nodes.h>
17 #endif
18 #ifndef UTILITY_UTILITY_H
19 #include <utility/utility.h>
20 #endif
22 struct ProcessorBase
24 struct Library pb_LibNode;
25 unsigned int cpucount;
26 APTR kernelBase;
27 APTR Private1; /* Pointer to arch-specific implementation data */
30 #define KernelBase ProcessorBase->kernelBase
32 #endif /* PROCESSOR_INTERN_H */