Function
waitv
(
waiters: &[Wait],
flags: WaitvFlags,
timeout: Option<&Timespec>,
clockid: ClockId,
)
Source from the content-addressed store, hash-verified
| 566 | /// [Linux]: https://www.kernel.org/doc/html/latest/userspace-api/futex2.html |
| 567 | #[inline] |
| 568 | pub fn waitv( |
| 569 | waiters: &[Wait], |
| 570 | flags: WaitvFlags, |
| 571 | timeout: Option<&Timespec>, |
| 572 | clockid: ClockId, |
| 573 | ) -> io::Result<usize> { |
| 574 | backend::thread::syscalls::futex_waitv(waiters, flags, timeout, clockid) |
| 575 | } |
| 576 | |
| 577 | bitflags::bitflags! { |
| 578 | /// Flags for use with the flags argument in [`waitv`]. |