diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2015-05-20 16:37:52 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2015-05-20 16:37:52 -0300 |
commit | 96dffc26dcc3e7e2bfb489845249ea274510e777 (patch) | |
tree | d6bf9d45b1876141409c40cdb5e57a2a2a5350eb /sysdeps/unix/sysv/linux/i386/Makefile | |
parent | 5be91118f623db41c74c5fdaebf12200a779e6e6 (diff) | |
download | glibc-96dffc26dcc3e7e2bfb489845249ea274510e777.tar glibc-96dffc26dcc3e7e2bfb489845249ea274510e777.tar.gz glibc-96dffc26dcc3e7e2bfb489845249ea274510e777.tar.bz2 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/Makefile')
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/Makefile b/sysdeps/unix/sysv/linux/i386/Makefile index e0fb1edd77..80da5935cf 100644 --- a/sysdeps/unix/sysv/linux/i386/Makefile +++ b/sysdeps/unix/sysv/linux/i386/Makefile @@ -2,7 +2,7 @@ default-abi := 32 ifeq ($(subdir),misc) -sysdep_routines += ioperm iopl vm86 call_pselect6 +sysdep_routines += ioperm iopl vm86 endif ifeq ($(subdir),elf) @@ -12,7 +12,7 @@ endif # fallocate, posix_fallocate use six-argument inline syscalls. ifeq ($(subdir),io) -sysdep_routines += call_sync_file_range libc-do-syscall +sysdep_routines += libc-do-syscall endif # libpthread uses six-argument inline syscalls. |