Changeset 214ec25c in mainline for kernel/arch/arm32/src/exception.c
- Timestamp:
- 2010-06-11T16:07:21Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b584cd4
- Parents:
- b3b7e14a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/exception.c
rb3b7e14a r214ec25c 91 91 * 92 92 * Dispatches the syscall. 93 */ 94 static void swi_exception(int exc_no, istate_t *istate) 93 * 94 */ 95 static void swi_exception(unsigned int exc_no, istate_t *istate) 95 96 { 96 97 istate->r0 = syscall_handler(istate->r0, istate->r1, istate->r2, … … 148 149 * Determines the sources of interrupt and calls their handlers. 149 150 */ 150 static void irq_exception( int exc_no, istate_t *istate)151 static void irq_exception(unsigned int exc_no, istate_t *istate) 151 152 { 152 153 machine_irq_exception(exc_no, istate);
Note:
See TracChangeset
for help on using the changeset viewer.