Home | History | Annotate | Download | only in block

Lines Matching refs:O_DSYNC

82 /* OS X does not have O_DSYNC */
83 #ifndef O_DSYNC
84 #define O_DSYNC O_SYNC
87 /* Approximate O_DIRECT with O_DSYNC if O_DIRECT isn't available */
89 #define O_DIRECT O_DSYNC
144 /* Use O_DSYNC for write-through caching, no flags for write-back caching,
149 s->open_flags |= O_DSYNC;