1#[cfg(any(
2    target_os = "android",
3    target_os = "dragonfly",
4    target_os = "fuchsia",
5    target_os = "linux",
6))]
7pub(crate) mod cpu_set;
8#[cfg(not(windows))]
9pub(crate) mod syscalls;
10pub(crate) mod types;
11#[cfg(not(target_os = "wasi"))]
12pub(crate) mod wait;
13