r-linux 0.1.0

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

pub mod api;
pub mod arch;
pub mod raw;