From 4eeb4a44084c7503c6c4e93d647cfc4f1bcb7762 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 36befdd432a5ab..c03aa7a45275f9 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)