raw-syscall-base-0.8.2 doesn't have any documentation.
raw-syscall-base
Low level system calls.
Usage
Add the following to your Cargo.toml
:
= "0.8.2"
Supported Platforms
- aarch64-linux
- arm-linux
- x86_64-freebsd
- x86_64-linux
Purpose
This crate is limited to providing basic functionality necessary to perform system calls on the target platform.
All functions are marked unsafe, and no validation is done on arguments or return values.
All arguments and return values use the most basic possible types with results wrapped in a Result
. For example all arguments are usize
and return is Result<usize, usize>
on x86_64-linux
. All arguments must be converted to this basic type, and it's up to the caller to determine what the result represents.
The intention is to provide a minimal stable base with no unnecessary overhead on which to build a higher-level library.
x86_64-linux Example
use ;
// attempts to write "hello" to STDOUT
pub unsafe
// exits the program with a success code
pub unsafe !