From adb0f4601dbaec87342cfa5af3d3f668f092b34d 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)