Home
last modified time | relevance | path

Searched refs:efds (Results 1 – 2 of 2) sorted by relevance

/linux-6.6.21/tools/testing/selftests/x86/
Dtest_syscall_vdso.c174 fd_set efds; variable
187 FD_ZERO(&efds); in prep_args()
190 FD_SET(2, &efds); in prep_args()
/linux-6.6.21/tools/include/nolibc/
Dsys.h914 int sys_select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout) in sys_select() argument
921 } arg = { .n = nfds, .r = rfds, .w = wfds, .e = efds, .t = timeout }; in sys_select()
930 return my_syscall6(__NR_pselect6, nfds, rfds, wfds, efds, timeout ? &t : NULL, NULL); in sys_select()
935 return my_syscall5(__NR__newselect, nfds, rfds, wfds, efds, timeout); in sys_select()
942 int select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout) in select() argument
944 return __sysret(sys_select(nfds, rfds, wfds, efds, timeout)); in select()