Fixed some typos etc. in comments.
[AROS.git] / rom / processor / processor_intern.h
blobc833436957fc7302ba9a125a18fef3d7e583a77a
1 /*
2 Copyright © 2010-2011, 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 Node pb_Node;
25 unsigned int cpucount;
26 APTR kernelBase;
27 APTR Private1; /* Pointer to arch-specific implementationd data */
30 #define KernelBase ProcessorBase->kernelBase
32 #endif /* PROCESSOR_INTERN_H */