Changeset a35b458 in mainline for kernel/arch/arm32/src/arm32.c
- Timestamp:
- 2018-03-02T20:10:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1380b7
- Parents:
- 3061bc1
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:38:31)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:10:49)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/arm32.c
r3061bc1 ra35b458 69 69 { 70 70 init.cnt = min3(bootinfo->cnt, TASKMAP_MAX_RECORDS, CONFIG_INIT_TASKS); 71 71 72 72 size_t i; 73 73 for (i = 0; i < init.cnt; i++) { … … 93 93 { 94 94 machine_init(); 95 95 96 96 /* Initialize exception dispatch table */ 97 97 exception_init(); … … 100 100 /* Initialize Restartable Atomic Sequences support. */ 101 101 ras_init(); 102 102 103 103 machine_output_init(); 104 104 } … … 132 132 { 133 133 uint8_t *stck; 134 134 135 135 stck = &THREAD->kstack[STACK_SIZE]; 136 136 supervisor_sp = (uintptr_t) stck;
Note:
See TracChangeset
for help on using the changeset viewer.