add limit value

This commit is contained in:
mii443
2024-10-17 07:51:52 +00:00
parent 9345d757d9
commit 5fd1095e84
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,5 @@
#[derive(Debug)]
pub enum CGroupLimitValue<T> {
Max,
Value(T),
}

View File

@ -1,3 +1,4 @@
pub mod cgroup; pub mod cgroup;
pub mod cgroup_stat; pub mod cgroup_stat;
pub mod controller; pub mod controller;
pub mod limit_value;