Proxmox-rs nix backport for loongarch64
Go to file
Paul Osborne bc84ac1358 sched: add support for arm linux using same cpuset_attribs as android
The limit of 32 cores may not actually be a limit with arm-linux, but
I am not aware of anything in excess of 32 processors out there currently
and this is what I have been running for awhile now on a beaglebone
black (`--target=arm-unknown-linux-gnueabihf`).

This change addresses #95 and relates to #97.
2015-04-24 16:12:56 -07:00
nix-test Get compiling on Rust 1.0 beta 2015-04-06 17:33:17 -07:00
src sched: add support for arm linux using same cpuset_attribs as android 2015-04-24 16:12:56 -07:00
test Add socketpair 2015-04-11 23:51:13 +02:00
.gitignore Test errno defines 2015-02-19 19:30:19 -08:00
.travis.yml Run CI on beta and nightly 2015-04-24 15:36:22 -07:00
Cargo.toml FromPrimitive is no more 2015-04-24 00:23:44 +02:00
deploy.sh Automatically deploy docs 2015-02-20 16:27:29 -08:00
LICENSE Add a license file 2015-02-02 10:51:34 -08:00
README.md Link to API docs 2015-02-20 16:34:28 -08:00

Rust bindings to *nix APIs

Rust friendly bindings to various *nix platform APIs (Linux, Darwin, ...). The goal is to not provide a 100% unified interface, but to unify what can be while still providing platform specific APIs.

Build Status

Usage

To use nix, first add this to your Cargo.toml:

[dependencies]
nix = "*"

Then, add this to your crate root:

extern crate nix;