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

Function alignment_check_handler

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

Source from the content-addressed store, hash-verified

219 panic!("");
220}
221extern "x86-interrupt" fn alignment_check_handler(
222 stack_frame: InterruptStackFrame,
223 error_code: u64,
224) {
225 log::error!(
226 "EXCEPTION: alignment_check {}\n{:#?}",
227 error_code,
228 stack_frame
229 );
230 panic!("");
231}
232extern "x86-interrupt" fn double_fault_handler(
233 stack_frame: InterruptStackFrame,
234 _error_code: u64,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected