Changeset 61e90dd in mainline for kernel/generic/include/config.h
- Timestamp:
- 2006-09-19T22:42:57Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 16529d5
- Parents:
- 3abe07f5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/config.h
r3abe07f5 r61e90dd 56 56 } init_t; 57 57 58 /** Boot allocations. 59 * 60 * Allocatations made by the boot that are meant to be used by the kernel 61 * are all recorded in the ballocs_t type. 62 */ 63 typedef struct { 64 uintptr_t base; 65 size_t size; 66 } ballocs_t; 67 58 68 typedef struct { 59 69 count_t cpu_count; /**< Number of processors detected. */ … … 70 80 extern config_t config; 71 81 extern init_t init; 82 extern ballocs_t ballocs; 72 83 73 84 #endif
Note:
See TracChangeset
for help on using the changeset viewer.