Lines Matching refs:aio_suspend
13 //! [`aio_suspend`](fn.aio_suspend.html) function, or via polling. Some
282 /// is an alternative to `aio_suspend`, used by most of the other examples.
1025 /// If `timeout` is `None`, `aio_suspend` will block indefinitely.
1029 /// Use `aio_suspend` to block until an aio operation completes.
1044 /// aio_suspend(&[&*aiocb], None).expect("aio_suspend failed");
1049 /// [`aio_suspend`](https://pubs.opengroup.org/onlinepubs/9699919799/functions/aio_suspend.html)
1050 pub fn aio_suspend(
1060 Errno::result(unsafe { libc::aio_suspend(p, list.len() as i32, timep) })
1073 /// this case, there is no need to use aio_suspend to wait or `error` to poll.
1194 /// aio_suspend relies on casting Rust Aio* struct pointers to libc::aiocb