We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43b7a74 commit 18cd846Copy full SHA for 18cd846
src/lib.rs
@@ -184,6 +184,18 @@ pub mod unistd;
184
#[cfg(any(feature = "poll", feature = "event"))]
185
mod poll_timeout;
186
187
+#[cfg(any(
188
+ target_os = "freebsd",
189
+ target_os = "haiku",
190
+ target_os = "linux",
191
+ target_os = "netbsd",
192
+ apple_targets
193
+))]
194
+feature! {
195
+ #![feature = "process"]
196
+ pub mod spawn;
197
+}
198
+
199
use std::ffi::{CStr, CString, OsStr};
200
use std::mem::MaybeUninit;
201
use std::os::unix::ffi::OsStrExt;
0 commit comments