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

Function overflow_handler

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

Source from the content-addressed store, hash-verified

189}
190
191extern "x86-interrupt" fn overflow_handler(stack_frame: InterruptStackFrame) {
192 log::error!("EXCEPTION: overflow_handler\n{:#?}", stack_frame);
193 panic!("");
194}
195extern "x86-interrupt" fn invalid_tss_handler(stack_frame: InterruptStackFrame, error_code: u64) {
196 log::error!("EXCEPTION: invalid_tss {}\n{:#?}", error_code, stack_frame);
197 panic!("");

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected