FRSYNC Should Use O_SYNC
The Solaris FRSYNC maps most logically to the Linux O_SYNC. There is no O_RSYNC on Linux but this wasn't noticed until just recently.
This commit is contained in:
parent
4295b530ee
commit
1b439713f1
|
@ -61,7 +61,7 @@
|
||||||
#define FOFFMAX O_LARGEFILE
|
#define FOFFMAX O_LARGEFILE
|
||||||
#define FSYNC O_SYNC
|
#define FSYNC O_SYNC
|
||||||
#define FDSYNC O_DSYNC
|
#define FDSYNC O_DSYNC
|
||||||
#define FRSYNC O_RSYNC
|
#define FRSYNC O_SYNC
|
||||||
#define FEXCL O_EXCL
|
#define FEXCL O_EXCL
|
||||||
#define FDIRECT O_DIRECT
|
#define FDIRECT O_DIRECT
|
||||||
#define FAPPEND O_APPEND
|
#define FAPPEND O_APPEND
|
||||||
|
|
Loading…
Reference in New Issue