From db4fabae2781291647f7923bb125e5f73cb2ab7a 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 56969fc1d67dff..2591dc57fd49ab 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -979,6 +979,9 @@ added: v0.4.2 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)