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 8296d35 commit bb780bbCopy full SHA for bb780bb
src/reaper/wait.rs
@@ -134,7 +134,7 @@ impl ChildGuard {
134
}
135
136
cfg_if::cfg_if! {
137
- if #[cfg(any(target_os = "linux"))] {
+ if #[cfg(target_os = "linux")] {
138
use async_io::Async;
139
use rustix::process;
140
use std::os::unix::io::OwnedFd;
@@ -244,7 +244,6 @@ cfg_if::cfg_if! {
244
)))?
245
};
246
247
-
248
Ok(Self {
249
handle: exit_filter,
250
child: child,
@@ -272,5 +271,4 @@ cfg_if::cfg_if! {
272
271
true
273
274
275
276
0 commit comments