Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@tnie.de>2017-09-22 04:10:04 +0300
committerMyles Borins <mylesborins@google.com>2017-10-11 09:05:40 +0300
commit6003afcc71ca261bd1f91a1346c7999e9d2797ce (patch)
treed15be5c4f1fb8729d9fc6f2adb65f5a1e8ad3146 /doc/api/fs.md
parenta814a551f318e3a9c3433d7ecede89689e9a7d77 (diff)
doc,test: minor improvements to O_DSYNC
Backport-PR-URL: https://github.com/nodejs/node/pull/15653 PR-URL: https://github.com/nodejs/node/pull/15547 Refs: https://github.com/nodejs/node/pull/15451 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'doc/api/fs.md')
-rw-r--r--doc/api/fs.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/api/fs.md b/doc/api/fs.md
index fc511bf7fe5..ec99f3dd7df 100644
--- a/doc/api/fs.md
+++ b/doc/api/fs.md
@@ -2867,12 +2867,13 @@ The following constants are meant for use with `fs.open()`.
</tr>
<tr>
<td><code>O_SYNC</code></td>
- <td>Flag indicating that the file is opened for synchronous I/O.</td>
+ <td>Flag indicating that the file is opened for synchronized I/O with write
+ operations waiting for file integrity.</td>
</tr>
<tr>
<td><code>O_DSYNC</code></td>
- <td>Flag indicating that the file is opened for synchronous I/O
- with write operations waiting for data integrity.</td>
+ <td>Flag indicating that the file is opened for synchronized I/O with write
+ operations waiting for data integrity.</td>
</tr>
<tr>
<td><code>O_SYMLINK</code></td>