Changeset 3b3e776 in mainline for kernel/arch/arm32/src/arm32.c
- Timestamp:
- 2010-02-05T10:57:50Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0358da0
- Parents:
- 3f085132 (diff), b4cbef1 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/arm32.c
r3f085132 r3b3e776 48 48 #include <macros.h> 49 49 #include <string.h> 50 #include <arch/ras.h> 50 51 51 52 #ifdef MACHINE_testarm … … 88 89 exception_init(); 89 90 interrupt_init(); 91 92 /* Initialize Restartable Atomic Sequences support. */ 93 ras_init(); 90 94 91 95 machine_output_init(); … … 136 140 uint8_t *stck; 137 141 138 tlb_invalidate_all();139 142 stck = &THREAD->kstack[THREAD_STACK_SIZE - SP_DELTA]; 140 143 supervisor_sp = (uintptr_t) stck; … … 152 155 void cpu_halt(void) 153 156 { 154 machine_cpu_halt(); 157 while (true) 158 machine_cpu_halt(); 155 159 } 156 160 … … 159 163 { 160 164 /* not implemented */ 161 while ( 1);165 while (true); 162 166 } 163 167 … … 176 180 } 177 181 182 void irq_initialize_arch(irq_t *irq) 183 { 184 (void) irq; 185 } 186 178 187 /** @} 179 188 */
Note:
See TracChangeset
for help on using the changeset viewer.