linux: pselect: Remove CALL_PSELECT6 macro

Nothing defines CALL_PSELECT6 in the current tree, so remove it.

Tested with:
- make PARALLELMFLAGS="-j8" && make xcheck PARALLELMFLAGS="-j8" (x86_64)
- scripts/build-many-glibcs.py
This commit is contained in:
Lukasz Majewski 2019-11-05 11:22:28 +01:00
parent 81a1fa6cbf
commit f2e30cc0f8

View File

@ -59,15 +59,8 @@ __pselect (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
data.ss = (__syscall_ulong_t) (uintptr_t) sigmask;
data.ss_len = _NSIG / 8;
int result;
#ifndef CALL_PSELECT6
# define CALL_PSELECT6(nfds, readfds, writefds, exceptfds, timeout, data) \
SYSCALL_CANCEL (pselect6, nfds, readfds, writefds, exceptfds, timeout, data)
#endif
result = CALL_PSELECT6 (nfds, readfds, writefds, exceptfds, timeout,
&data);
int result = SYSCALL_CANCEL (pselect6, nfds, readfds, writefds, exceptfds,
timeout, &data);
# ifndef __ASSUME_PSELECT
if (result == -1 && errno == ENOSYS)