MCPcopy Create free account
hub / github.com/Ruddle/Fomos / breakpoint_handler

Function breakpoint_handler

bootloader/kernel/src/interrupts.rs:187–189  ·  view source on GitHub ↗
(stack_frame: InterruptStackFrame)

Source from the content-addressed store, hash-verified

185 IDT.load();
186}
187extern "x86-interrupt" fn breakpoint_handler(stack_frame: InterruptStackFrame) {
188 log::error!("EXCEPTION: BREAKPOINT\n{:#?}", stack_frame);
189}
190
191extern "x86-interrupt" fn overflow_handler(stack_frame: InterruptStackFrame) {
192 log::error!("EXCEPTION: overflow_handler\n{:#?}", stack_frame);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected