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

Function double_fault_handler

bootloader/kernel/src/interrupts.rs:232–237  ·  view source on GitHub ↗
(
    stack_frame: InterruptStackFrame,
    _error_code: u64,
)

Source from the content-addressed store, hash-verified

230 panic!("");
231}
232extern "x86-interrupt" fn double_fault_handler(
233 stack_frame: InterruptStackFrame,
234 _error_code: u64,
235) -> ! {
236 panic!("EXCEPTION: DOUBLE FAULT\n{:#?}", stack_frame);
237}
238
239extern "x86-interrupt" fn alignment_check(stack_frame: InterruptStackFrame, _error_code: u64) {
240 panic!("EXCEPTION: alignment_check{:#?}", stack_frame);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected