hurd: add ST_RELATIME

sysdeps/mach/hurd/bits/statvfs.h (ST_RELATIME): New macro.
This commit is contained in:
Samuel Thibault 2020-09-27 18:23:24 +02:00
parent 7d4ec75e11
commit 7424a0d009

View File

@ -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
};