diff options
author | Florian Weimer <fweimer@redhat.com> | 2015-04-24 13:26:09 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2015-05-05 08:27:28 +0200 |
commit | 4bd40bcf44e79e610189d4498c49bba3ecb01c42 (patch) | |
tree | 3d2e2887529c052de3f28ad5d77e480a9eb823d6 /sysdeps/unix/sysv/linux/i386/Makefile | |
parent | 305392eaca0be3111cdabc4b458400a6596b6970 (diff) | |
download | glibc-4bd40bcf44e79e610189d4498c49bba3ecb01c42.tar glibc-4bd40bcf44e79e610189d4498c49bba3ecb01c42.tar.gz glibc-4bd40bcf44e79e610189d4498c49bba3ecb01c42.tar.bz2 glibc-4bd40bcf44e79e610189d4498c49bba3ecb01c42.zip |
i386: Remove fallocate, fallocate64, posix_fallocate, posix_fallocate64
With 6-argument system call support, the generic Linux implementations of
these system calls work, and there is no need for i386-specific versions.
Diffstat (limited to 'sysdeps/unix/sysv/linux/i386/Makefile')
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/Makefile b/sysdeps/unix/sysv/linux/i386/Makefile index d7a59d345d..e0fb1edd77 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 call_fallocate +sysdep_routines += ioperm iopl vm86 call_pselect6 endif ifeq ($(subdir),elf) @@ -10,8 +10,9 @@ sysdep-others += lddlibc4 install-bin += lddlibc4 endif +# fallocate, posix_fallocate use six-argument inline syscalls. ifeq ($(subdir),io) -sysdep_routines += call_sync_file_range +sysdep_routines += call_sync_file_range libc-do-syscall endif # libpthread uses six-argument inline syscalls. |