(stack_frame: InterruptStackFrame, _error_code: u64)
| 237 | } |
| 238 | |
| 239 | extern "x86-interrupt" fn alignment_check(stack_frame: InterruptStackFrame, _error_code: u64) { |
| 240 | panic!("EXCEPTION: alignment_check{:#?}", stack_frame); |
| 241 | } |
| 242 | extern "x86-interrupt" fn invalid_opcode(stack_frame: InterruptStackFrame) { |
| 243 | panic!("EXCEPTION: invalid_opcode{:#?}", stack_frame); |
| 244 | } |
nothing calls this directly
no outgoing calls
no test coverage detected