(
stack_frame: InterruptStackFrame)
| 225 | } |
| 226 | |
| 227 | extern "x86-interrupt" fn breakpoint_handler( |
| 228 | stack_frame: InterruptStackFrame) |
| 229 | { |
| 230 | println!("EXCEPTION: BREAKPOINT\n{:#?}", stack_frame); |
| 231 | } |
| 232 | |
| 233 | // Check that execution continues after a breakpoint exception |
| 234 | #[test_case] |
nothing calls this directly
no outgoing calls
no test coverage detected