Changeset b3b7e14a in mainline for kernel/arch/arm32/src/exception.c
- Timestamp:
- 2010-06-11T15:31:03Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 214ec25c
- Parents:
- be06914
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/exception.c
rbe06914 rb3b7e14a 165 165 install_exception_handlers(); 166 166 167 exc_register(EXC_IRQ, "interrupt", (iroutine) irq_exception); 168 exc_register(EXC_PREFETCH_ABORT, "prefetch abort", 169 (iroutine) prefetch_abort); 170 exc_register(EXC_DATA_ABORT, "data abort", (iroutine) data_abort); 171 exc_register(EXC_SWI, "software interrupt", (iroutine) swi_exception); 167 exc_register(EXC_IRQ, "interrupt", true, 168 (iroutine_t) irq_exception); 169 exc_register(EXC_PREFETCH_ABORT, "prefetch abort", true, 170 (iroutine_t) prefetch_abort); 171 exc_register(EXC_DATA_ABORT, "data abort", true, 172 (iroutine_t) data_abort); 173 exc_register(EXC_SWI, "software interrupt", true, 174 (iroutine_t) swi_exception); 172 175 } 173 176
Note:
See TracChangeset
for help on using the changeset viewer.