diff options
author | Joseph Myers <joseph@codesourcery.com> | 2014-03-06 14:13:18 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2014-03-06 14:13:18 +0000 |
commit | 67737b8f07c3664c716f69fd1a531f51a002d1f8 (patch) | |
tree | e151aa5d93f7bd0021c3282d0ca355b04cfe1ff9 /sysdeps/unix/sysv/linux/aarch64/kernel-features.h | |
parent | aa97dee16e5299bf2b8f7b2d67215361c7c904e2 (diff) | |
download | glibc-67737b8f07c3664c716f69fd1a531f51a002d1f8.tar glibc-67737b8f07c3664c716f69fd1a531f51a002d1f8.tar.gz glibc-67737b8f07c3664c716f69fd1a531f51a002d1f8.tar.bz2 glibc-67737b8f07c3664c716f69fd1a531f51a002d1f8.zip |
Don't define __ASSUME_UTIMES for linux-generic architectures.
The __ASSUME_UTIMES macro describes whether the utimes syscall is
present. For linux-generic architectures, it isn't (utimensat is
instead), so the macro should not be defined for them; this patch
removes the spurious definitions for such architectures. (Those
definitions don't actually cause any user-visible bug, because
futimes.c doesn't use __ASSUME_UTIMES if __ASSUME_UTIMENSAT is
defined, and futimesat.c and utimes.c are overridden for
linux-generic, but the definitions are still logically incorrect.)
* sysdeps/unix/sysv/linux/aarch64/kernel-features.h
(__ASSUME_UTIMES): Remove.
* sysdeps/unix/sysv/linux/tile/kernel-features.h
(__ASSUME_UTIMES): Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/aarch64/kernel-features.h')
-rw-r--r-- | sysdeps/unix/sysv/linux/aarch64/kernel-features.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/aarch64/kernel-features.h b/sysdeps/unix/sysv/linux/aarch64/kernel-features.h index 417f89b2d9..53039f9316 100644 --- a/sysdeps/unix/sysv/linux/aarch64/kernel-features.h +++ b/sysdeps/unix/sysv/linux/aarch64/kernel-features.h @@ -34,6 +34,5 @@ #define __ASSUME_SENDMMSG_SYSCALL 1 #define __ASSUME_SIGNALFD4 1 #define __ASSUME_SOCK_CLOEXEC 1 -#define __ASSUME_UTIMES 1 #include_next <kernel-features.h> |