Changeset 880de6e in mainline for generic/src
- Timestamp:
- 2005-11-28T16:12:35Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5ff4f6b
- Parents:
- 5803145
- Location:
- generic/src/main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/main/kinit.c
r5803145 r880de6e 58 58 #endif /* CONFIG_TEST */ 59 59 60 61 60 /** Kernel initialization thread. 61 * 62 * kinit takes care of higher level kernel 63 * initialization (i.e. thread creation, 64 * userspace initialization etc.). 65 * 66 * @param arg Not used. 67 */ 62 68 void kinit(void *arg) 63 69 { -
generic/src/main/main.c
r5803145 r880de6e 77 77 context_t ctx; 78 78 79 /* 80 * These 'hardcoded' variables will be intiali sed by79 /** 80 * These 'hardcoded' variables will be intialized by 81 81 * the linker or the low level assembler code with 82 82 * appropriate sizes and addresses. … … 89 89 size_t init_size = 0; 90 90 91 /* 91 /** 92 92 * Size of memory in bytes taken by kernel and heap. 93 93 */ 94 94 static size_t kernel_size; 95 95 96 /* 96 /** 97 97 * Size of heap. 98 98 */ … … 100 100 101 101 102 /* 102 /** 103 103 * Extra space between heap and stack 104 104 * enforced by alignment requirements.
Note:
See TracChangeset
for help on using the changeset viewer.