(
stack_frame: InterruptStackFrame,
error_code: u64,
)
| 197 | panic!(""); |
| 198 | } |
| 199 | extern "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 | } |
| 210 | extern "x86-interrupt" fn stack_segment_fault_handler( |
| 211 | stack_frame: InterruptStackFrame, |
| 212 | error_code: u64, |
nothing calls this directly
no outgoing calls
no test coverage detected