r_linux/syscall/arch/x86/
mod.rs

1//! Architecture Definitions for x86
2//!
3//! This module provides the linux-kernel API definitions specific
4//! to x86.
5//!
6//! No documentation is provided for the individual symbols and definitions.
7//! They are meant to match the official API of the linux kernel. Either see
8//! the official linux kernel documentation for help, or look at the interfaces
9//! exposed by the `api` module.
10
11pub mod nr;
12pub mod syscall;