Lines Matching refs:nfds
1636 int sys_poll(struct pollfd *fds, int nfds, int timeout)
1638 return my_syscall3(__NR_poll, fds, nfds, timeout);
1660 int sys_select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout)
1667 } arg = { .n = nfds, .r = rfds, .w = wfds, .e = efds, .t = timeout };
1676 return my_syscall6(__NR_pselect6, nfds, rfds, wfds, efds, timeout ? &t : NULL, NULL);
1681 return my_syscall5(__NR__newselect, nfds, rfds, wfds, efds, timeout);
2073 int poll(struct pollfd *fds, int nfds, int timeout)
2075 int ret = sys_poll(fds, nfds, timeout);
2134 int select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout)
2136 int ret = sys_select(nfds, rfds, wfds, efds, timeout);