about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/i386/pselect.c
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2015-05-20 16:37:52 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2015-05-20 16:37:52 -0300
commit96dffc26dcc3e7e2bfb489845249ea274510e777 (patch)
treed6bf9d45b1876141409c40cdb5e57a2a2a5350eb /sysdeps/unix/sysv/linux/i386/pselect.c
parent5be91118f623db41c74c5fdaebf12200a779e6e6 (diff)
downloadglibc-96dffc26dcc3e7e2bfb489845249ea274510e777.tar.gz
glibc-96dffc26dcc3e7e2bfb489845249ea274510e777.tar.xz
glibc-96dffc26dcc3e7e2bfb489845249ea274510e777.zip
i386: Remove six-argument specialized implementations
This patch removes the specialized i386 assembly implementations for
fallocate{64}, pselect, and sync_file_range now that i386 have
support for 6 argument syscalls.
Diffstat (limited to 'sysdeps/unix/sysv/linux/i386/pselect.c')
-rw-r--r--sysdeps/unix/sysv/linux/i386/pselect.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/pselect.c b/sysdeps/unix/sysv/linux/i386/pselect.c
deleted file mode 100644
index 2646608786..0000000000
--- a/sysdeps/unix/sysv/linux/i386/pselect.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <sys/select.h>
-
-extern int __call_pselect6 (int nfds, fd_set *readfds, fd_set *writefds,
-			    fd_set *exceptfds, const struct timespec *timeout,
-			    void *data) attribute_hidden;
-
-
-#define CALL_PSELECT6(nfds, readfds, writefds, exceptfds, timeout, data) \
-  ({ int r = __call_pselect6 (nfds, readfds, writefds, exceptfds, timeout,    \
-			      data);					      \
-     if (r < 0 && r > -4096)						      \
-       {								      \
-	 __set_errno (-r);						      \
-	 r = -1;							      \
-       }								      \
-     r; })
-
-#include "../pselect.c"