Changeset 985e26d2 in mainline for kernel/arch/ia32/src/interrupt.c
- Timestamp:
- 2010-01-07T19:06:59Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8190e63
- Parents:
- 743e17b (diff), eca2435 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/interrupt.c
r743e17b r985e26d2 98 98 } 99 99 100 static void de_fault(int n, istate_t *istate) 101 { 102 fault_if_from_uspace(istate, "Divide error."); 103 104 decode_istate(istate); 105 panic("Divide error."); 106 } 107 100 108 /** General Protection Fault. */ 101 109 static void gp_fault(int n __attribute__((unused)), istate_t *istate) … … 215 223 } 216 224 225 exc_register(0, "de_fault", (iroutine) de_fault); 217 226 exc_register(7, "nm_fault", (iroutine) nm_fault); 218 227 exc_register(12, "ss_fault", (iroutine) ss_fault);
Note:
See TracChangeset
for help on using the changeset viewer.