mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-23 01:13:23 +00:00
9 lines
244 B
Rust
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::*;
|