Lines Matching refs:nfds
64 /// This can be used to calculate the `nfds` parameter of the [`select`] function.
162 /// * `nfds`: The highest file descriptor set in any of the passed `FdSet`s, plus 1. If `None`, this
177 nfds: N,
195 let nfds = nfds.into().unwrap_or_else(|| {
220 unsafe { libc::select(nfds, readfds, writefds, errorfds, timeout) };
241 /// * `nfds`: The highest file descriptor set in any of the passed `FdSet`s, plus 1. If `None`, this
259 pub fn pselect<'a, N, R, W, E, T, S>(nfds: N,
279 let nfds = nfds.into().unwrap_or_else(|| {
295 libc::pselect(nfds, readfds, writefds, errorfds, timeout, sigmask)