(
_stack_frame: InterruptStackFrame,
_error_code: u64,
)
| 24 | } |
| 25 | |
| 26 | extern "x86-interrupt" fn test_double_fault_handler( |
| 27 | _stack_frame: InterruptStackFrame, |
| 28 | _error_code: u64, |
| 29 | ) -> ! { |
| 30 | serial_println!("[ok]"); |
| 31 | exit_qemu(QemuExitCode::Success); |
| 32 | loop {} |
| 33 | } |
| 34 | |
| 35 | |
| 36 | #[no_mangle] |
nothing calls this directly
no test coverage detected