+2009-12-15 Joseph Myers <joseph@codesourcery.com>
+
+ * sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Redefine O_SYNC and
+ O_DSYNC to match 2.6.33+ kernels.
+
2009-12-09 Joseph Myers <joseph@codesourcery.com>
* sysdeps/unix/sysv/linux/mips/bits/socket.h: Define mmsghdr and
#define O_WRONLY 01
#define O_RDWR 02
#define O_APPEND 0x0008
-#define O_SYNC 0x0010
+#define O_SYNC 0x4010
#define O_NONBLOCK 0x0080
#define O_NDELAY O_NONBLOCK
#define O_CREAT 0x0100 /* not fcntl */
We define the symbols here but let them do the same as O_SYNC since
this is a superset. */
#if defined __USE_POSIX199309 || defined __USE_UNIX98
-# define O_DSYNC O_SYNC /* Synchronize data. */
+# define O_DSYNC 0x0010 /* Synchronize data. */
# define O_RSYNC O_SYNC /* Synchronize read operations. */
#endif