Changeset e2b762ec in mainline for kernel/arch/amd64/src/interrupt.c
- Timestamp:
- 2009-03-16T21:58:05Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f36c061
- Parents:
- d9167a1c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/interrupt.c
rd9167a1c re2b762ec 44 44 #include <mm/as.h> 45 45 #include <arch.h> 46 #include <symtab.h>47 46 #include <arch/asm.h> 48 47 #include <proc/scheduler.h> … … 54 53 #include <ddi/irq.h> 55 54 55 #ifdef CONFIG_SYMTAB 56 #include <symtab.h> 57 #endif 58 56 59 /* 57 60 * Interrupt and exception dispatching. … … 67 70 /* uint64_t *x = &istate->stack[0]; */ 68 71 72 #ifdef CONFIG_SYMTAB 69 73 if (!(symbol = get_symtab_entry(istate->rip))) 70 74 symbol = ""; 75 #else 76 symbol = ""; 77 #endif 71 78 72 79 printf("-----EXCEPTION(%d) OCCURED----- ( %s )\n", n, __func__);
Note:
See TracChangeset
for help on using the changeset viewer.