Changeset cc73a8a1 in mainline for generic/include/config.h
- Timestamp:
- 2006-06-20T12:26:16Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2c8a70a
- Parents:
- 1e0a5fc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/config.h
r1e0a5fc rcc73a8a1 27 27 */ 28 28 29 29 /** @addtogroup generic 30 30 * @{ 31 31 */ … … 57 57 58 58 typedef struct { 59 count_t cpu_count; 60 volatile count_t cpu_active; 59 count_t cpu_count; /**< Number of processors detected. */ 60 volatile count_t cpu_active; /**< Number of processors that are up and running. */ 61 61 62 62 __address base; 63 size_t memory_size; 64 size_t kernel_size; /**< Size of memory in bytes taken by kernel and stack */ 65 66 bool mm_initialized; 63 size_t memory_size; /**< Size of detected memory in bytes. */ 64 size_t kernel_size; /**< Size of memory in bytes taken by kernel and stack */ 67 65 } config_t; 68 66 … … 72 70 #endif 73 71 74 72 /** @} 75 73 */ 76
Note:
See TracChangeset
for help on using the changeset viewer.