aboutsummaryrefslogtreecommitdiff
path: root/deps/uv/docs
diff options
context:
space:
mode:
Diffstat (limited to 'deps/uv/docs')
-rw-r--r--deps/uv/docs/src/errors.rst14
-rw-r--r--deps/uv/docs/src/fs.rst4
2 files changed, 16 insertions, 2 deletions
diff --git a/deps/uv/docs/src/errors.rst b/deps/uv/docs/src/errors.rst
index 7c3f95d760..b8f971f576 100644
--- a/deps/uv/docs/src/errors.rst
+++ b/deps/uv/docs/src/errors.rst
@@ -335,11 +335,25 @@ API
Returns the error message for the given error code. Leaks a few bytes
of memory when you call it with an unknown error code.
+.. c:function:: char* uv_strerror_r(int err, char* buf, size_t buflen)
+
+ Returns the error message for the given error code. The zero-terminated
+ message is stored in the user-supplied buffer `buf` of at most `buflen` bytes.
+
+ .. versionadded:: 1.22.0
+
.. c:function:: const char* uv_err_name(int err)
Returns the error name for the given error code. Leaks a few bytes
of memory when you call it with an unknown error code.
+.. c:function:: char* uv_err_name_r(int err, char* buf, size_t buflen)
+
+ Returns the error name for the given error code. The zero-terminated
+ name is stored in the user-supplied buffer `buf` of at most `buflen` bytes.
+
+ .. versionadded:: 1.22.0
+
.. c:function:: int uv_translate_sys_error(int sys_errno)
Returns the libuv error code equivalent to the given platform dependent error
diff --git a/deps/uv/docs/src/fs.rst b/deps/uv/docs/src/fs.rst
index a390f1409d..f383e5b10c 100644
--- a/deps/uv/docs/src/fs.rst
+++ b/deps/uv/docs/src/fs.rst
@@ -92,9 +92,9 @@ Data types
UV_FS_READLINK,
UV_FS_CHOWN,
UV_FS_FCHOWN,
- UV_FS_LCHOWN,
UV_FS_REALPATH,
- UV_FS_COPYFILE
+ UV_FS_COPYFILE,
+ UV_FS_LCHOWN
} uv_fs_type;
.. c:type:: uv_dirent_t