Changeset 39494010 in mainline for generic/src/interrupt/interrupt.c
- Timestamp:
- 2005-12-26T01:05:47Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1120276
- Parents:
- 5b1ced0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/interrupt/interrupt.c
r5b1ced0 r39494010 75 75 ASSERT(n < IVT_ITEMS); 76 76 77 exc_table[n].f(n , stack);77 exc_table[n].f(n + IVT_FIRST, stack); 78 78 } 79 79 … … 84 84 } 85 85 86 /** KConsole cmd - print all exceptions */86 /** kconsole cmd - print all exceptions */ 87 87 static int exc_print_cmd(cmd_arg_t *argv) 88 88 { … … 96 96 if (!symbol) 97 97 symbol = "not found"; 98 printf("%d %s 0x%p(%s)\n", i,exc_table[i].name,98 printf("%d %s 0x%p(%s)\n", i + IVT_FIRST, exc_table[i].name, 99 99 exc_table[i].f,symbol); 100 100 if (!((i+1) % 20)) {
Note:
See TracChangeset
for help on using the changeset viewer.