Changeset 7ed2d8f in mainline for kernel/arch/mips32/src/exception.c
- Timestamp:
- 2009-01-07T22:55:52Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c571f42
- Parents:
- 06b2b7f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/src/exception.c
r06b2b7f r7ed2d8f 89 89 static void unhandled_exception(int n, istate_t *istate) 90 90 { 91 fault_if_from_uspace(istate, " unhandled exception %s", exctable[n]);91 fault_if_from_uspace(istate, "Unhandled exception %s", exctable[n]); 92 92 93 93 print_regdump(istate); 94 panic(" unhandled exception %s\n", exctable[n]);94 panic("Unhandled exception %s.\n", exctable[n]); 95 95 } 96 96 … … 133 133 scheduler_fpu_lazy_request(); 134 134 else { 135 fault_if_from_uspace(istate, " unhandled Coprocessor Unusable Exception");136 panic(" unhandled Coprocessor Unusable Exception\n");135 fault_if_from_uspace(istate, "Unhandled Coprocessor Unusable Exception"); 136 panic("Unhandled Coprocessor Unusable Exception.\n"); 137 137 } 138 138 }
Note:
See TracChangeset
for help on using the changeset viewer.