[BZ #341] (O_NOATIME): Define.
authorAndreas Jaeger <aj@suse.de>
Mon, 23 Aug 2004 07:28:46 +0000 (07:28 +0000)
committerAndreas Jaeger <aj@suse.de>
Mon, 23 Aug 2004 07:28:46 +0000 (07:28 +0000)
13 files changed:
sysdeps/unix/sysv/linux/alpha/bits/fcntl.h
sysdeps/unix/sysv/linux/arm/bits/fcntl.h
sysdeps/unix/sysv/linux/cris/bits/fcntl.h
sysdeps/unix/sysv/linux/hppa/bits/fcntl.h
sysdeps/unix/sysv/linux/i386/bits/fcntl.h
sysdeps/unix/sysv/linux/ia64/bits/fcntl.h
sysdeps/unix/sysv/linux/m68k/bits/fcntl.h
sysdeps/unix/sysv/linux/mips/bits/fcntl.h
sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h
sysdeps/unix/sysv/linux/s390/bits/fcntl.h
sysdeps/unix/sysv/linux/sh/bits/fcntl.h
sysdeps/unix/sysv/linux/sparc/bits/fcntl.h
sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h

index 828cc75..ce4a5da 100644 (file)
@@ -47,6 +47,7 @@
 # define O_DIRECT      040000  /* Direct disk access.  */
 # define O_DIRECTORY   0100000 /* Must be a directory.  */
 # define O_NOFOLLOW    0200000 /* Do not follow links.  */
+# define O_NOATIME     04000000 /* Do not set atime.  */
 #endif
 
 #ifdef __USE_LARGEFILE64
index d050f7f..3574e75 100644 (file)
@@ -45,6 +45,7 @@
 # define O_DIRECTORY   040000  /* Must be a directory.  */
 # define O_NOFOLLOW    0100000 /* Do not follow links.  */
 # define O_DIRECT      0200000 /* Direct disk access.  */
+# define O_NOATIME     01000000 /* Do not set atime.  */
 #endif
 
 #ifdef __USE_LARGEFILE64
index 6abdd1d..36799aa 100644 (file)
@@ -46,6 +46,7 @@
 # define O_DIRECT       040000 /* Direct disk access.  */
 # define O_DIRECTORY   0200000 /* Must be a directory.  */
 # define O_NOFOLLOW    0400000 /* Do not follow links.  */
+# define O_NOATIME     01000000 /* Do not set atime.  */
 #endif
 
 /* For now Linux has synchronisity options for data and read operations.
index 6cc96cf..9d967c6 100644 (file)
@@ -47,6 +47,7 @@
 # define O_DIRECT      00040000 /* direct disk access hint - currently ignored */
 # define O_DIRECTORY   00010000 /* must be a directory */
 # define O_NOFOLLOW    00000200 /* don't follow links */
+# define O_NOATIME     04000000 /* Do not set atime.  */
 #endif
 
 #ifdef __USE_LARGEFILE64
index 8b753c5..9065825 100644 (file)
@@ -46,6 +46,7 @@
 # define O_DIRECT       040000 /* Direct disk access.  */
 # define O_DIRECTORY   0200000 /* Must be a directory.  */
 # define O_NOFOLLOW    0400000 /* Do not follow links.  */
+# define O_NOATIME     01000000 /* Do not set atime.  */
 #endif
 
 /* For now Linux has synchronisity options for data and read operations.
index 97971d3..d330954 100644 (file)
@@ -43,8 +43,9 @@
 #define O_DIRECT       040000
 
 #ifdef __USE_GNU
-#define O_DIRECTORY    0200000 /* must be a directory */
-#define O_NOFOLLOW     0400000 /* don't follow links */
+# define O_DIRECTORY   0200000 /* must be a directory */
+# define O_NOFOLLOW    0400000 /* don't follow links */
+# define O_NOATIME     01000000 /* Do not set atime.  */
 #endif
 
 #ifdef __USE_LARGEFILE64
index 2e85d1e..90c0a48 100644 (file)
@@ -45,6 +45,7 @@
 # define O_DIRECTORY    040000 /* Must be a directory.  */
 # define O_NOFOLLOW    0100000 /* Do not follow links.  */
 # define O_DIRECT      0200000 /* Direct disk access.  */
+# define O_NOATIME     01000000 /* Do not set atime.  */
 #endif
 
 /* For now Linux has synchronisity options for data and read operations.
index 48531d8..550593b 100644 (file)
@@ -49,6 +49,7 @@
 # define O_NOFOLLOW    0x20000 /* Do not follow links.  */
 # define O_DIRECT      0x8000  /* Direct disk access hint.  */
 # define O_DIRECTORY   0x10000 /* Must be a directory.  */
+# define O_NOATIME     0x40000 /* Do not set atime.  */
 #endif
 
 #define O_NDELAY       O_NONBLOCK
index e1fbb9c..19649c0 100644 (file)
@@ -46,6 +46,7 @@
 # define O_DIRECT      0400000 /* Direct disk access.  */
 # define O_DIRECTORY    040000 /* Must be a directory.  */
 # define O_NOFOLLOW    0100000 /* Do not follow links.  */
+# define O_NOATIME     01000000 /* Do not set atime.  */
 #endif
 
 #ifdef __USE_LARGEFILE64
index 1cdc487..8c47077 100644 (file)
@@ -45,6 +45,7 @@
 # define O_DIRECT       040000 /* Direct disk access.  */
 # define O_DIRECTORY   0200000 /* Must be a directory.  */
 # define O_NOFOLLOW    0400000 /* Do not follow links.  */
+# define O_NOATIME     01000000 /* Do not set atime.  */
 #endif
 
 #ifdef __USE_LARGEFILE64
index db1a314..c883002 100644 (file)
@@ -46,6 +46,7 @@
 # define O_DIRECT       040000 /* Direct disk access.  */
 # define O_DIRECTORY   0200000 /* Must be a directory.  */
 # define O_NOFOLLOW    0400000 /* Do not follow links.  */
+# define O_NOATIME     01000000 /* Do not set atime.  */
 #endif
 
 /* For now Linux has synchronisity options for data and read operations.
index 967bef1..5dc8bf3 100644 (file)
@@ -45,6 +45,7 @@
 # define O_DIRECTORY   0x10000 /* must be a directory */
 # define O_NOFOLLOW    0x20000 /* don't follow links */
 # define O_DIRECT      0x100000 /* direct disk access hint */
+# define O_NOATIME     0x200000 /* Do not set atime.  */
 #endif
 
 #ifdef __USE_LARGEFILE64
index 2247af0..9198c70 100644 (file)
@@ -46,6 +46,7 @@
 # define O_DIRECT       040000 /* Direct disk access.  */
 # define O_DIRECTORY   0200000 /* Must be a directory.  */
 # define O_NOFOLLOW    0400000 /* Do not follow links.  */
+# define O_NOATIME     01000000 /* Do not set atime.  */
 #endif
 
 /* For now Linux has synchronisity options for data and read operations.