From: Lukasz Majewski Date: Tue, 5 Nov 2019 10:22:28 +0000 (+0100) Subject: linux: pselect: Remove CALL_PSELECT6 macro X-Git-Tag: glibc-2.31~290 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f2e30cc0f89f348a154c5c09d21a1de561c7b2f8;p=thirdparty%2Fglibc.git 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 --- diff --git a/sysdeps/unix/sysv/linux/pselect.c b/sysdeps/unix/sysv/linux/pselect.c index d07d64114db..acda3e0cdd6 100644 --- a/sysdeps/unix/sysv/linux/pselect.c +++ b/sysdeps/unix/sysv/linux/pselect.c @@ -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)