Changeset f4bb404 in mainline
- Timestamp:
- 2019-04-04T19:21:11Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f6cf76f
- Parents:
- 1332270
- Location:
- kernel/arch/mips32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/include/arch/exception.h
r1332270 rf4bb404 69 69 #define HW_INTERRUPTS (MIPS_INTERRUPTS - 3) 70 70 71 typedef void (* 71 typedef void (*int_handler_t)(unsigned int); 72 72 extern int_handler_t int_handler[]; 73 73 -
kernel/arch/mips32/src/interrupt.c
r1332270 rf4bb404 48 48 49 49 /** Table of interrupt handlers. */ 50 int_handler_t int_handler[MIPS_INTERRUPTS] = { };50 int_handler_t int_handler[MIPS_INTERRUPTS] = { }; 51 51 52 52 /** Disable interrupts.
Note:
See TracChangeset
for help on using the changeset viewer.