Home
last modified time | relevance | path

Searched refs:exceptfds (Results 1 – 3 of 3) sorted by relevance

/components/libc/posix/io/poll/
A Dselect.c48 int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout) in select() argument
63 (exceptfds && FD_ISSET(fd, exceptfds))) in select()
105 if (exceptfds && FD_ISSET(fd, exceptfds)) in select()
141 if (exceptfds) in select()
143 fdszero(exceptfds, nfds); in select()
179 if (exceptfds) in select()
183 FD_SET(pollset[ndx].fd, exceptfds); in select()
/components/libc/compilers/common/include/sys/
A Dselect.h55 int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout);
/components/lwp/
A Dlwp_syscall.c969 sysret_t sys_select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval … in sys_select() argument
1005 if (exceptfds) in sys_select()
1007 if (!lwp_user_accessable((void *)exceptfds, sizeof *exceptfds)) in sys_select()
1018 lwp_get_from_user(kexceptfds, exceptfds, sizeof *kexceptfds); in sys_select()
1032 lwp_put_to_user(exceptfds, kexceptfds, sizeof *kexceptfds); in sys_select()
1064 if (!lwp_user_accessable((void *)exceptfds, sizeof *exceptfds)) in sys_select()
1068 ret = select(nfds, readfds, writefds, exceptfds, timeout); in sys_select()

Completed in 21 milliseconds