Rev 3766 | Rev 3790 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3766 | Rev 3788 | ||
---|---|---|---|
Line 226... | Line 226... | ||
226 | istate->in3, istate->in4, istate->in5, istate->in6); |
226 | istate->in3, istate->in4, istate->in5, istate->in6); |
227 | } |
227 | } |
228 | 228 | ||
229 | void universal_handler(uint64_t vector, istate_t *istate) |
229 | void universal_handler(uint64_t vector, istate_t *istate) |
230 | { |
230 | { |
231 | fault_if_from_uspace(istate, "Interruption: %#hx (%s)\n", |
231 | fault_if_from_uspace(istate, "Interruption: %#hx (%s)", |
232 | (uint16_t) vector, vector_to_string(vector)); |
232 | (uint16_t) vector, vector_to_string(vector)); |
233 | dump_interrupted_context(istate); |
233 | dump_interrupted_context(istate); |
234 | panic("Interruption: %#hx (%s)\n", (uint16_t) vector, |
234 | panic("Interruption: %#hx (%s)\n", (uint16_t) vector, |
235 | vector_to_string(vector)); |
235 | vector_to_string(vector)); |
236 | } |
236 | } |