From fa494b85238be6493a739b1ecf1d510976b6075c Mon Sep 17 00:00:00 2001 From: Gibson Fahnestock Date: Tue, 13 Jun 2017 14:47:37 +0100 Subject: [PATCH] doc: note that fs.futimes only works on AIX >7.1 PR-URL: https://github.com/nodejs/node/pull/13659 Fixes: https://github.com/nodejs/node/issues/12609 Reviewed-By: Gireesh Punathil Reviewed-By: Refael Ackermann Reviewed-By: Colin Ihrig Reviewed-By: James M Snell Reviewed-By: Richard Lau Reviewed-By: Michael Dawson i --- doc/api/fs.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/api/fs.md b/doc/api/fs.md index a245eed287d93a..c898699b6b4308 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -1225,6 +1225,9 @@ changes: Change the file timestamps of a file referenced by the supplied file descriptor. +*Note*: This function does not work on AIX versions before 7.1, it will return +the error `UV_ENOSYS`. + ## fs.futimesSync(fd, atime, mtime)