aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@tnie.de>2017-09-22 03:10:04 +0200
committerTobias Nießen <tniessen@tnie.de>2017-09-26 16:19:15 +0200
commitf98687db4a95450965a503c63982657a61fd49b2 (patch)
treed07ab7065a79e8577249b380ba8e7e268171a89a /doc
parent3a69ef55e06cda552e7ad295ddf904e1c70ae13f (diff)
downloadandroid-node-v8-f98687db4a95450965a503c63982657a61fd49b2.tar.gz
android-node-v8-f98687db4a95450965a503c63982657a61fd49b2.tar.bz2
android-node-v8-f98687db4a95450965a503c63982657a61fd49b2.zip
doc,test: minor improvements to O_DSYNC
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')
-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 ce29e33485..76c1061dd8 100644
--- a/doc/api/fs.md
+++ b/doc/api/fs.md
@@ -2806,12 +2806,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>