Changeset 5d97627 in mainline
- Timestamp:
- 2019-04-04T18:50:47Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1332270
- Parents:
- 124bc22
- Location:
- kernel/arch/mips32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/include/arch/exception.h
r124bc22 r5d97627 66 66 #define INT_TIMER 7 67 67 68 #define INTERRUPTS 869 #define HW_INTERRUPTS (INTERRUPTS - 3)68 #define MIPS_INTERRUPTS 8 69 #define HW_INTERRUPTS (MIPS_INTERRUPTS - 3) 70 70 71 71 typedef void (* int_handler_t)(unsigned int); -
kernel/arch/mips32/src/exception.c
r124bc22 r5d97627 175 175 176 176 unsigned int i; 177 for (i = 0; i < INTERRUPTS; i++) {177 for (i = 0; i < MIPS_INTERRUPTS; i++) { 178 178 179 179 /* -
kernel/arch/mips32/src/interrupt.c
r124bc22 r5d97627 48 48 49 49 /** Table of interrupt handlers. */ 50 int_handler_t int_handler[ 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.