1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-06-10 00:36:16 +02:00
youki/src/cgroups/v2/hugetlb.rs

12 lines
256 B
Rust
Raw Normal View History

2021-05-28 22:37:43 +02:00
use anyhow::Result;
2021-05-28 20:42:33 +02:00
use super::controller::Controller;
use oci_spec::LinuxResources;
pub struct HugeTlb {}
impl Controller for HugeTlb {
2021-05-28 22:37:43 +02:00
fn apply(linux_resources: &LinuxResources, cgroup_path: &std::path::Path) -> Result<()> {
2021-05-28 20:42:33 +02:00
Ok(())
}
}