summaryrefslogtreecommitdiff
path: root/deps/uv/src/unix/async.c
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2021-02-13 13:03:10 -0500
committerAntoine du Hamel <duhamelantoine1995@gmail.com>2021-02-15 23:09:54 +0100
commit78d6e62fd07ad500f84f1dad8a2509be597dcfc1 (patch)
tree7fa9f0e433f77bd1e7de52e21652fcc03e9ed215 /deps/uv/src/unix/async.c
parent0f29587757a782973b0aeabdee255b79c30780a2 (diff)
downloadnode-new-78d6e62fd07ad500f84f1dad8a2509be597dcfc1.tar.gz
deps: upgrade to libuv 1.41.0
Notable changes: - The IBM i platform has been promoted to a Tier 2 platform. - libuv is now built with `-fno-strict-aliasing`, and recommends that projects using libuv do the same. - `uv_fs_mkdir()` now returns `UV_EINVAL` for invalid directory names on Windows. - `uv_uptime()` now returns the correct value on OpenVZ containers. - Windows 8 is the new minimum supported version of Windows. - Bind errors are now reported from `uv_tcp_connect()`. - The `uv_pipe()` function has been added. - The `uv_socketpair()` function has been added. - `uv_read_start()` error handling has been unified across Windows and Unix. PR-URL: https://github.com/nodejs/node/pull/37360 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Diffstat (limited to 'deps/uv/src/unix/async.c')
-rw-r--r--deps/uv/src/unix/async.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/uv/src/unix/async.c b/deps/uv/src/unix/async.c
index 5f58fb88d6..e1805c3237 100644
--- a/deps/uv/src/unix/async.c
+++ b/deps/uv/src/unix/async.c
@@ -214,7 +214,7 @@ static int uv__async_start(uv_loop_t* loop) {
pipefd[0] = err;
pipefd[1] = -1;
#else
- err = uv__make_pipe(pipefd, UV__F_NONBLOCK);
+ err = uv__make_pipe(pipefd, UV_NONBLOCK_PIPE);
if (err < 0)
return err;
#endif