(_stackframe: InterruptStackFrame, _errcode: u64)
| 29 | } |
| 30 | |
| 31 | extern "x86-interrupt" fn test_double_fault_handler(_stackframe: InterruptStackFrame, _errcode: u64) -> ! |
| 32 | { |
| 33 | serprintln!("[SUCCESS]"); |
| 34 | exitqemu(QEMUExitCode::Success); |
| 35 | loop {} |
| 36 | } |
| 37 | |
| 38 | #[no_mangle] |
| 39 | pub extern "C" fn _start() -> ! |
nothing calls this directly
no test coverage detected