1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-21 23:16:09 +02:00
youki/cgroups/src/lib.rs
2021-08-12 11:31:26 +02:00

13 lines
339 B
Rust

//! Control groups provide a way of controlling groups of processes.
//! Examples: controlling resource limits, execution priority, measuring resource usage,
//! freezing, checkpointing and restarting groups of processes.
#[cfg(test)]
#[macro_use]
extern crate quickcheck;
pub mod common;
pub mod stats;
mod test;
pub mod v1;
pub mod v2;