Eran Knafo

Results 3 comments of Eran Knafo

At least in posix systems, it is because of this: ```rust #[cfg(target_os = "linux")] let wait_res = { let timespec = TimeSpec::milliseconds(milliseconds); nix::poll::ppoll(slice::from_mut(&mut fd), Some(timespec), SigSet::empty()) }; #[cfg(not(target_os = "linux"))]...

can you complete it?