(stack_frame: InterruptStackFrame)
| 189 | } |
| 190 | |
| 191 | extern "x86-interrupt" fn overflow_handler(stack_frame: InterruptStackFrame) { |
| 192 | log::error!("EXCEPTION: overflow_handler\n{:#?}", stack_frame); |
| 193 | panic!(""); |
| 194 | } |
| 195 | extern "x86-interrupt" fn invalid_tss_handler(stack_frame: InterruptStackFrame, error_code: u64) { |
| 196 | log::error!("EXCEPTION: invalid_tss {}\n{:#?}", error_code, stack_frame); |
| 197 | panic!(""); |
nothing calls this directly
no outgoing calls
no test coverage detected