(
stack_frame: InterruptStackFrame, _error_code: u64)
| 238 | } |
| 239 | |
| 240 | extern "x86-interrupt" fn double_fault_handler( |
| 241 | stack_frame: InterruptStackFrame, _error_code: u64) -> ! |
| 242 | { |
| 243 | panic!("EXCEPTION: DOUBLE FAULT\n{:#?}", stack_frame); |
| 244 | } |
| 245 | |
| 246 | use x86_64::structures::idt::PageFaultErrorCode; |
| 247 | use crate::hlt_loop; |
nothing calls this directly
no outgoing calls
no test coverage detected