summaryrefslogtreecommitdiffstats
path: root/src/os/mod.rs
blob: 056d44e32a3dfc7b870a0db97868b0176957ac0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(target_os = "linux")]
pub(self) mod linux;

#[cfg(any(target_os = "macos", target_os = "freebsd"))]
pub(self) mod lsof;

#[cfg(any(target_os = "macos", target_os = "freebsd"))]
mod lsof_utils;

mod errors;
mod shared;

pub use shared::*;