r_linux/syscall/
mod.rs

1//! Linux Kernel System Calls
2//!
3//! This module provides raw and direct access to system calls on linux
4//! platforms. Furthermore, it provides the system call numbers of all
5//! available linux system calls, named prototypes for all APIs, and
6//! definitions of the datatypes used to communicate with the kernel.
7
8pub mod api;
9pub mod arch;
10pub mod raw;