⚠️ VeridianOS Kernel Documentation - This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise. no_std

veridian_kernel/debug/
mod.rs

1//! Kernel Debug Infrastructure
2//!
3//! Provides GDB remote serial protocol (RSP) stub for interactive debugging
4//! over COM2 (0x2F8). Supports register read/write, memory access,
5//! breakpoints, watchpoints, and thread awareness.
6
7#[cfg(all(feature = "alloc", target_arch = "x86_64"))]
8pub mod gdb_stub;
9
10#[cfg(all(feature = "alloc", target_arch = "x86_64"))]
11pub mod breakpoint;