syscall.rs/README.md

8 lines
361 B
Markdown
Raw Normal View History

2014-09-06 22:55:42 +02:00
# Raw system calls for Rust
This library allows Rust code to invoke system calls directly.
2017-01-23 16:03:48 +01:00
See the [list of supported platforms](https://github.com/japaric/syscall.rs/tree/master/src/platform). Additions are very welcome!
2014-09-06 22:55:42 +02:00
We do not intend to provide wrapper functions like `read(2)` etc. because there are many subtly different ways to define them in Rust.