Changeset 898e847 in mainline
- Timestamp:
- 2011-11-06T22:28:03Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 622f409
- Parents:
- b0f00a9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/config.h
rb0f00a9 r898e847 74 74 75 75 typedef struct { 76 unsigned int cpu_count; /**< Number of processors detected. */ 77 volatile size_t cpu_active; /**< Number of processors that are up and running. */ 76 /** Number of processors detected. */ 77 unsigned int cpu_count; 78 /** Number of processors that are up and running. */ 79 volatile size_t cpu_active; 78 80 79 81 uintptr_t base; 80 size_t kernel_size; /**< Size of memory in bytes taken by kernel and stack */ 82 /** Size of memory in bytes taken by kernel and stack. */ 83 size_t kernel_size; 81 84 82 uintptr_t stack_base; /**< Base adddress of initial stack */ 83 size_t stack_size; /**< Size of initial stack */ 85 /** Base adddress of initial stack. */ 86 uintptr_t stack_base; 87 /** Size of initial stack. */ 88 size_t stack_size; 89 90 /** Base address of the kernel identity mapped memory. */ 91 uintptr_t identity_base; 92 /** Size of the kernel identity mapped memory. */ 93 size_t identity_size; 84 94 } config_t; 85 95
Note:
See TracChangeset
for help on using the changeset viewer.