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

Function segment_not_present_handler

bootloader/kernel/src/interrupts.rs:199–209  ·  view source on GitHub ↗
(
    stack_frame: InterruptStackFrame,
    error_code: u64,
)

Source from the content-addressed store, hash-verified

197 panic!("");
198}
199extern "x86-interrupt" fn segment_not_present_handler(
200 stack_frame: InterruptStackFrame,
201 error_code: u64,
202) {
203 log::error!(
204 "EXCEPTION: segment_not_present {}\n{:#?}",
205 error_code,
206 stack_frame
207 );
208 panic!("");
209}
210extern "x86-interrupt" fn stack_segment_fault_handler(
211 stack_frame: InterruptStackFrame,
212 error_code: u64,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected