From 5229c443fe95d8dd13da6430bf942f9e57377a9d Mon Sep 17 00:00:00 2001 From: Xavier L'Heureux Date: Tue, 17 Sep 2019 17:10:15 -0400 Subject: Add wait, fdatasync, poll and pause for Redox --- src/sys/signal.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'src/sys/signal.rs') 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 { let mut signum = mem::MaybeUninit::uninit(); let res = unsafe { libc::sigwait(&self.sigset as *const libc::sigset_t, signum.as_mut_ptr()) }; -- cgit v1.2.3