kernel/arch/x86_64/interrupts/exceptions/_1_debug.rs
1// SPDX-License-Identifier: GPL-3.0-only
2//! Debug exception handler (vector 1).
3//!
4//! Authors: MarioS271
5
6use x86_64::structures::idt::InterruptStackFrame;
7
8/// No-op handler; returns immediately so the faulting instruction resumes.
9pub extern "x86-interrupt" fn handler(
10 _: InterruptStackFrame
11) {
12 return;
13}