Changeset f651e80 in mainline for kernel/arch/mips32/src/exception.c
- Timestamp:
- 2009-01-08T12:07:38Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7447572
- Parents:
- c571f42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/src/exception.c
rc571f42 rf651e80 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.", 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."); 137 137 } 138 138 } … … 171 171 static void syscall_exception(int n, istate_t *istate) 172 172 { 173 panic("Syscall is handled through shortcut ");173 panic("Syscall is handled through shortcut."); 174 174 } 175 175
Note:
See TracChangeset
for help on using the changeset viewer.