syscall.rs fork for squiid.
Find a file
2017-01-21 19:34:16 +01:00
ci actually run tests 2017-01-13 00:02:22 -05:00
examples fix test and example 2017-01-13 00:09:10 -05:00
src Add newfstatat syscall for Linux 2017-01-21 19:34:16 +01:00
tests linux: test that the return code, in the error case, has the right sign 2017-01-13 09:29:31 -05:00
tools tools/nr.rs.c: template to generate the syscall numbers of your environment 2015-01-20 16:53:15 +01:00
.gitignore Initial commit 2014-09-06 14:14:12 -07:00
.travis.yml MIPS support 2017-01-12 23:50:03 -05:00
Cargo.toml release v0.1.1 2017-01-14 20:16:10 -05:00
CHANGELOG.md release v0.1.1 2017-01-14 20:16:10 -05:00
COPYRIGHT Prepare for crates.io upload 2015-01-10 12:43:48 -08: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 Update README 2014-09-30 14:39:30 -07:00

Raw system calls for Rust

Build Status

This library allows Rust code to invoke system calls directly.

See the list of supported platforms. Additions are very welcome!

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