syscall.rs fork for squiid.
Find a file
Keegan McAllister 8385f4c9c6 Link libcore
It's now needed for lang item "sized".
2014-09-17 10:37:25 -07:00
examples Add an example 2014-09-06 14:21:52 -07:00
src Link libcore 2014-09-17 10:37:25 -07:00
tests Initial commit 2014-09-06 14:14:12 -07:00
.gitignore Initial commit 2014-09-06 14:14:12 -07:00
.travis.yml Add travis.yml 2014-09-06 14:14:20 -07:00
AUTHORS Initial commit 2014-09-06 14:14:12 -07:00
Cargo.toml Initial commit 2014-09-06 14:14:12 -07:00
COPYRIGHT Initial commit 2014-09-06 14:14:12 -07:00
LICENSE-APACHE Initial commit 2014-09-06 14:14:12 -07:00
LICENSE-MIT Initial commit 2014-09-06 14:14:12 -07:00
README.md Add Travis status to README 2014-09-06 14:25:16 -07:00

Raw system calls for Rust

Build Status

This library allows Rust code to invoke system calls directly.

It currently only supports x86-64 Linux, but more platforms can be added.

We do not intend to provide wrapper functions like read(2) etc. because there are many subtly different ways to define them in Rust.