(stack_frame: InterruptStackFrame, error_code: u64)
| 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!(""); |
| 198 | } |
| 199 | extern "x86-interrupt" fn segment_not_present_handler( |
| 200 | stack_frame: InterruptStackFrame, |
| 201 | error_code: u64, |
nothing calls this directly
no outgoing calls
no test coverage detected