(
stack_frame: InterruptStackFrame,
_error_code: u64)
| 274 | } |
| 275 | |
| 276 | extern "x86-interrupt" fn general_protection_fault_handler( |
| 277 | stack_frame: InterruptStackFrame, |
| 278 | _error_code: u64) { |
| 279 | panic!("EXCEPTION: GENERAL PROTECTION FAULT\n{:#?}", stack_frame); |
| 280 | } |
| 281 | |
| 282 | // PIC 8259 configuration |
| 283 |
nothing calls this directly
no outgoing calls
no test coverage detected