docs.rs failed to build cgroup-0.0.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

CGroup management.

Example

extern crate cgroup;

fn main() {
let cg = cgroup::CGroup::new().unwrap();
let cont = cg.controller(b"memory").unwrap();
println!("{}", cont.get(b"memory.usage_in_bytes"));
}