(stack_frame: InterruptStackFrame)
| 185 | IDT.load(); |
| 186 | } |
| 187 | extern "x86-interrupt" fn breakpoint_handler(stack_frame: InterruptStackFrame) { |
| 188 | log::error!("EXCEPTION: BREAKPOINT\n{:#?}", stack_frame); |
| 189 | } |
| 190 | |
| 191 | extern "x86-interrupt" fn overflow_handler(stack_frame: InterruptStackFrame) { |
| 192 | log::error!("EXCEPTION: overflow_handler\n{:#?}", stack_frame); |
nothing calls this directly
no outgoing calls
no test coverage detected