(
stack_frame: InterruptStackFrame,
_error_code: u64,
)
| 230 | panic!(""); |
| 231 | } |
| 232 | extern "x86-interrupt" fn double_fault_handler( |
| 233 | stack_frame: InterruptStackFrame, |
| 234 | _error_code: u64, |
| 235 | ) -> ! { |
| 236 | panic!("EXCEPTION: DOUBLE FAULT\n{:#?}", stack_frame); |
| 237 | } |
| 238 | |
| 239 | extern "x86-interrupt" fn alignment_check(stack_frame: InterruptStackFrame, _error_code: u64) { |
| 240 | panic!("EXCEPTION: alignment_check{:#?}", stack_frame); |
nothing calls this directly
no outgoing calls
no test coverage detected