about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPino Toscano <toscano.pino@tiscali.it>2013-05-10 20:39:32 +0200
committerPino Toscano <toscano.pino@tiscali.it>2013-05-10 20:39:32 +0200
commitf63fae737800773c68bb6472ae8b55a46432515e (patch)
tree598e4d6416797de79e1a2ee2ac7f096762432f41
parent8a67a4b3435d8471523d3ae4f7cb46cf9b8d72d9 (diff)
downloadglibc-f63fae737800773c68bb6472ae8b55a46432515e.tar.gz
glibc-f63fae737800773c68bb6472ae8b55a46432515e.tar.xz
glibc-f63fae737800773c68bb6472ae8b55a46432515e.zip
Hurd: add ST_NOATIME
-rw-r--r--ChangeLog4
-rw-r--r--sysdeps/mach/hurd/bits/statvfs.h4
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4226597f7b..b1bf921a6c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-05-10  Pino Toscano  <toscano.pino@tiscali.it>
+
+	* sysdeps/mach/hurd/bits/statvfs.h: Add ST_NOATIME.
+
 2013-05-10  Andreas Jaeger  <aj@suse.de>
 
 	[BZ #15448]
diff --git a/sysdeps/mach/hurd/bits/statvfs.h b/sysdeps/mach/hurd/bits/statvfs.h
index ecde762f11..68bd058b4d 100644
--- a/sysdeps/mach/hurd/bits/statvfs.h
+++ b/sysdeps/mach/hurd/bits/statvfs.h
@@ -87,7 +87,9 @@ enum
   ,
   ST_NOEXEC = 8,
 # define ST_NOEXEC	ST_NOEXEC
-  ST_SYNCHRONOUS = 16
+  ST_SYNCHRONOUS = 16,
 # define ST_SYNCHRONOUS	ST_SYNCHRONOUS
+  ST_NOATIME = 32		/* Do not update access times.  */
+# define ST_NOATIME	ST_NOATIME
 #endif
 };