MCPcopy Create free account
hub / github.com/bendudson/EuraliOS / breakpoint_handler

Function breakpoint_handler

kernel/src/interrupts.rs:227–231  ·  view source on GitHub ↗
(
    stack_frame: InterruptStackFrame)

Source from the content-addressed store, hash-verified

225}
226
227extern "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]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected