rename process::fd to process:pid_fd

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2019-10-31 11:48:12 +01:00
parent 43b5e59485
commit c7f2eab1ae
2 changed files with 2 additions and 2 deletions

View File

@ -1,15 +1,15 @@
use crate::capability::Capabilities;
pub mod cgroups;
pub mod fd;
pub mod id_map;
pub mod pid_fd;
pub mod user_caps;
#[doc(inline)]
pub use cgroups::CGroups;
#[doc(inline)]
pub use fd::PidFd;
pub use pid_fd::PidFd;
#[doc(inline)]
pub use id_map::{IdMap, IdMapEntry};