Files
asterinas/kernel/aster-nix/src/syscall/arch/mod.rs
2024-05-17 21:29:04 +08:00

9 lines
244 B
Rust

// SPDX-License-Identifier: MPL-2.0
//! Implement the `syscall_dispatch` function and the const values of system call number such as `SYS_READ`.
#[cfg(target_arch = "x86_64")]
pub mod x86;
#[cfg(target_arch = "x86_64")]
pub use self::x86::*;