summaryrefslogtreecommitdiff
path: root/src/sys
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys')
-rw-r--r--src/sys/signal.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/sys/signal.rs b/src/sys/signal.rs
index b49a9f53..811071bd 100644
--- a/src/sys/signal.rs
+++ b/src/sys/signal.rs
@@ -464,7 +464,6 @@ impl SigSet {
/// Suspends execution of the calling thread until one of the signals in the
/// signal mask becomes pending, and returns the accepted signal.
- #[cfg(not(target_os = "redox"))]
pub fn wait(&self) -> Result<Signal> {
let mut signum = mem::MaybeUninit::uninit();
let res = unsafe { libc::sigwait(&self.sigset as *const libc::sigset_t, signum.as_mut_ptr()) };