Initial vendor packages
Signed-off-by: Valentin Popov <valentin@popov.link>
This commit is contained in:
9
vendor/rustix/src/backend/libc/process/wait.rs
vendored
Normal file
9
vendor/rustix/src/backend/libc/process/wait.rs
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
use crate::backend::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};
|
Reference in New Issue
Block a user