doc: document fs.datasync(Sync)
authorRon Korving <rkorving@wizcorp.jp>
Wed, 24 Feb 2016 03:41:05 +0000 (12:41 +0900)
committerMyles Borins <mborins@us.ibm.com>
Mon, 21 Mar 2016 19:57:51 +0000 (12:57 -0700)
The APIs are implemented but currently not documented.

PR-URL: https://github.com/nodejs/node/pull/5402
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Rod Vagg <rod@vagg.org>
doc/api/fs.markdown

index 64e4a15..d1e9f7e 100644 (file)
@@ -429,6 +429,15 @@ to the completion callback.
 
 Synchronous fchown(2). Returns `undefined`.
 
+## fs.fdatasync(fd, callback)
+
+Asynchronous fdatasync(2). No arguments other than a possible exception are
+given to the completion callback.
+
+## fs.fdatasyncSync(fd)
+
+Synchronous fdatasync(2). Returns `undefined`.
+
 ## fs.fstat(fd, callback)
 
 Asynchronous fstat(2). The callback gets two arguments `(err, stats)` where