aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/mach
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2020-09-27 18:23:24 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2020-09-27 18:23:27 +0200
commit7424a0d009773bfdfeba4696d94da72706066546 (patch)
tree8ca6575f1189797e83ac5cde756f65676ba41d7a /sysdeps/mach
parent7d4ec75e111291851620c6aa2c4460647b7fd50d (diff)
downloadglibc-7424a0d009773bfdfeba4696d94da72706066546.tar
glibc-7424a0d009773bfdfeba4696d94da72706066546.tar.gz
glibc-7424a0d009773bfdfeba4696d94da72706066546.tar.bz2
glibc-7424a0d009773bfdfeba4696d94da72706066546.zip
hurd: add ST_RELATIME
sysdeps/mach/hurd/bits/statvfs.h (ST_RELATIME): New macro.
Diffstat (limited to 'sysdeps/mach')
-rw-r--r--sysdeps/mach/hurd/bits/statvfs.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/bits/statvfs.h b/sysdeps/mach/hurd/bits/statvfs.h
index 12a4729b62..e5e5625af3 100644
--- a/sysdeps/mach/hurd/bits/statvfs.h
+++ b/sysdeps/mach/hurd/bits/statvfs.h
@@ -89,7 +89,9 @@ enum
# define ST_NOEXEC ST_NOEXEC
ST_SYNCHRONOUS = 16,
# define ST_SYNCHRONOUS ST_SYNCHRONOUS
- ST_NOATIME = 32 /* Do not update access times. */
+ ST_NOATIME = 32, /* Do not update access times. */
# define ST_NOATIME ST_NOATIME
+ ST_RELATIME = 64 /* Update atime relative to mtime/ctime. */
+# define ST_RELATIME ST_RELATIME
#endif
};