mirror of git://sourceware.org/git/glibc.git
Update M68K O_SYNC.
This commit is contained in:
parent
93a0dfdaf4
commit
4b8a7d2c3f
|
@ -1,3 +1,8 @@
|
||||||
|
2009-12-16 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/m68k/bits/fcntl.h: Redefine O_SYNC and
|
||||||
|
O_DSYNC to match 2.6.33+ kernels.
|
||||||
|
|
||||||
2009-11-23 Andreas Schwab <schwab@linux-m68k.org>
|
2009-11-23 Andreas Schwab <schwab@linux-m68k.org>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/m68k/bits/stat.h: Use struct timespec
|
* sysdeps/unix/sysv/linux/m68k/bits/stat.h: Use struct timespec
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
#define O_APPEND 02000
|
#define O_APPEND 02000
|
||||||
#define O_NONBLOCK 04000
|
#define O_NONBLOCK 04000
|
||||||
#define O_NDELAY O_NONBLOCK
|
#define O_NDELAY O_NONBLOCK
|
||||||
#define O_SYNC 010000
|
#define O_SYNC 04010000
|
||||||
#define O_FSYNC O_SYNC
|
#define O_FSYNC O_SYNC
|
||||||
#define O_ASYNC 020000
|
#define O_ASYNC 020000
|
||||||
|
|
||||||
|
@ -56,7 +56,7 @@
|
||||||
We define the symbols here but let them do the same as O_SYNC since
|
We define the symbols here but let them do the same as O_SYNC since
|
||||||
this is a superset. */
|
this is a superset. */
|
||||||
#if defined __USE_POSIX199309 || defined __USE_UNIX98
|
#if defined __USE_POSIX199309 || defined __USE_UNIX98
|
||||||
# define O_DSYNC O_SYNC /* Synchronize data. */
|
# define O_DSYNC 010000 /* Synchronize data. */
|
||||||
# define O_RSYNC O_SYNC /* Synchronize read operations. */
|
# define O_RSYNC O_SYNC /* Synchronize read operations. */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue