This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.16-ports-merge-198-ge04e272


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  e04e272d21d57a5e84af253c085a80de9b2f7e9f (commit)
      from  952bf94a281fb855c169f43fb7330b4dc655063a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=e04e272d21d57a5e84af253c085a80de9b2f7e9f

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog    |    3 +++
 bits/fcntl.h |    4 ++++
 2 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 3dd5842..a31fa48 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2012-08-15  Roland McGrath  <roland@hack.frob.com>
 
+	* bits/fcntl.h [__USE_POSIX199309 || __USE_UNIX98]:
+	(O_DSYNC, O_RSYNC): New macros (with NetBSD values).
+
 	* misc/lseek.c: File moved to ...
 	* io/lseek.c: ... here.
 
diff --git a/bits/fcntl.h b/bits/fcntl.h
index ddf7ab2..65b366a 100644
--- a/bits/fcntl.h
+++ b/bits/fcntl.h
@@ -44,6 +44,10 @@
 # define O_NOFOLLOW	0x00000100	/* Do not follow links.	 */
 # define O_CLOEXEC	0x00400000      /* Set close_on_exec.  */
 #endif
+#if defined __USE_POSIX199309 || defined __USE_UNIX98
+# define O_DSYNC	0x00010000	/* Synchronize data.  */
+# define O_RSYNC	0x00020000	/* Synchronize read operations.	 */
+#endif
 
 /* All opens support large file sizes, so there is no flag bit for this.  */
 #ifdef __USE_LARGEFILE64


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]