From 8cdfa445d6629ffef4cb84967ff7017654045bc2 Mon Sep 17 00:00:00 2001 From: mo khan Date: Wed, 2 Jul 2025 18:36:06 -0600 Subject: chore: add vendor directory --- vendor/rustix/src/backend/libc/process/wait.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 vendor/rustix/src/backend/libc/process/wait.rs (limited to 'vendor/rustix/src/backend/libc/process/wait.rs') diff --git a/vendor/rustix/src/backend/libc/process/wait.rs b/vendor/rustix/src/backend/libc/process/wait.rs new file mode 100644 index 00000000..9f9810d7 --- /dev/null +++ b/vendor/rustix/src/backend/libc/process/wait.rs @@ -0,0 +1,17 @@ +use crate::backend::c; + +pub(crate) use c::{ + WEXITSTATUS, WIFCONTINUED, WIFEXITED, WIFSIGNALED, WIFSTOPPED, WNOHANG, WSTOPSIG, WTERMSIG, +}; + +#[cfg(not(target_os = "horizon"))] +pub(crate) use c::{WCONTINUED, WUNTRACED}; + +#[cfg(not(any( + target_os = "cygwin", + target_os = "horizon", + target_os = "openbsd", + target_os = "redox", + target_os = "wasi", +)))] +pub(crate) use c::{WEXITED, WNOWAIT, WSTOPPED}; -- cgit v1.2.3