summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/backend/libc/process/wait.rs
blob: c09ee100238480a475f57337f37e19a31b1c9aaf (plain)
1
2
3
4
5
6
7
8
9
use super::super::c;

pub(crate) use c::{
    WCONTINUED, WEXITSTATUS, WIFCONTINUED, WIFEXITED, WIFSIGNALED, WIFSTOPPED, WNOHANG, WSTOPSIG,
    WTERMSIG, WUNTRACED,
};

#[cfg(not(any(target_os = "openbsd", target_os = "redox", target_os = "wasi")))]
pub(crate) use c::{WEXITED, WNOWAIT, WSTOPPED};