Changeset cc73a8a1 in mainline for generic/src/main/main.c
- 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/src/main/main.c
r1e0a5fc rcc73a8a1 88 88 89 89 /** Global configuration structure. */ 90 config_t config = { 91 .mm_initialized = false 92 }; 90 config_t config; 93 91 94 92 /** Initial user-space tasks */ … … 99 97 context_t ctx; 100 98 101 /* *99 /* 102 100 * These 'hardcoded' variables will be intialized by 103 101 * the linker or the low level assembler code with 104 102 * appropriate sizes and addresses. 105 103 */ 106 __address hardcoded_load_address = 0; 107 size_t hardcoded_ktext_size = 0; 108 size_t hardcoded_kdata_size = 0; 104 __address hardcoded_load_address = 0; /**< Virtual address of where the kernel is loaded. */ 105 size_t hardcoded_ktext_size = 0; /**< Size of the kernel code in bytes. */ 106 size_t hardcoded_kdata_size = 0; /**< Size of the kernel data in bytes. */ 109 107 110 108 void main_bsp(void); … … 202 200 page_init(); 203 201 tlb_init(); 204 config.mm_initialized = true;205 202 arch_post_mm_init(); 206 203
Note:
See TracChangeset
for help on using the changeset viewer.