starry-kernel 0.5.11

A Linux-compatible OS kernel built on ArceOS unikernel
Documentation
1
2
3
4
5
6
7
8
9
10
#[ax_hal::trap::breakpoint_handler]
fn default_breakpoint_handler(_tf: &mut ax_hal::context::TrapFrame) -> bool {
    false
}

#[cfg(target_arch = "x86_64")]
#[ax_hal::trap::debug_handler]
fn default_debug_handler(_tf: &mut ax_hal::context::TrapFrame) -> bool {
    false
}