summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/imp/libc/process/mod.rs
blob: 8675c1af90199c51551a35ac631acf8f3362493c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(any(
    target_os = "android",
    target_os = "dragonfly",
    target_os = "fuchsia",
    target_os = "linux",
))]
pub(crate) mod cpu_set;
#[cfg(not(windows))]
pub(crate) mod syscalls;
pub(crate) mod types;
#[cfg(not(target_os = "wasi"))]
pub(crate) mod wait;