Changeset 874621f in mainline for arch/mips32/src/exception.c
- Timestamp:
- 2006-06-06T07:40:51Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0dbc4e7
- Parents:
- 6f9a9bc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips32/src/exception.c
r6f9a9bc r874621f 79 79 static void unhandled_exception(int n, istate_t *istate) 80 80 { 81 fault_if_from_uspace(istate, "unhandled exception %s", exctable[n]); 82 81 83 print_regdump(istate); 82 84 panic("unhandled exception %s\n", exctable[n]); … … 120 122 if (cp0_cause_coperr(cp0_cause_read()) == fpu_cop_id) 121 123 scheduler_fpu_lazy_request(); 122 else 124 else { 125 fault_if_from_uspace(istate, "unhandled Coprocessor Unusable Exception"); 123 126 panic("unhandled Coprocessor Unusable Exception\n"); 127 } 124 128 } 125 129 #endif
Note:
See TracChangeset
for help on using the changeset viewer.