rustix/backend/libc/process/
wait.rs

1use crate::backend::c;
2
3pub(crate) use c::{
4    WEXITSTATUS, WIFCONTINUED, WIFEXITED, WIFSIGNALED, WIFSTOPPED, WNOHANG, WSTOPSIG, WTERMSIG,
5};
6
7#[cfg(not(target_os = "horizon"))]
8pub(crate) use c::{WCONTINUED, WUNTRACED};
9
10#[cfg(not(any(
11    target_os = "cygwin",
12    target_os = "horizon",
13    target_os = "openbsd",
14    target_os = "redox",
15    target_os = "wasi",
16)))]
17pub(crate) use c::{WEXITED, WNOWAIT, WSTOPPED};