diff options
author | cjihrig <cjihrig@gmail.com> | 2019-05-15 13:24:08 -0400 |
---|---|---|
committer | Ruben Bridgewater <ruben@bridgewater.de> | 2019-05-22 10:18:21 +0200 |
commit | aed74ccb4c1bbd0f121bc3bb31781c9d6adfcd36 (patch) | |
tree | 80f475004e07c24b7de11e6eac209e73b22591af /deps/uv/Makefile.am | |
parent | 594c9868a3a98b2510514b748c5d885561ed32c5 (diff) | |
download | node-new-aed74ccb4c1bbd0f121bc3bb31781c9d6adfcd36.tar.gz |
deps: upgrade to libuv 1.29.1
Notable changes:
- uv_get_constrained_memory() has been added.
- A race condition in uv_async_send() has been fixed.
- uv_get_free_memory() and uv_get_total_memory() now read from
/proc/meminfo, which should improve correctness when called
from inside an lxc container.
- A failed assertion in uv_fs_poll_stop() has been fixed.
- A bug in MAC addresses for IP-aliases has been fixed.
Fixes: https://github.com/nodejs/node/issues/27170
Fixes: https://github.com/nodejs/node/issues/27493
PR-URL: https://github.com/nodejs/node/pull/27718
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'deps/uv/Makefile.am')
-rw-r--r-- | deps/uv/Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/deps/uv/Makefile.am b/deps/uv/Makefile.am index 22069625e3..07224f32b4 100644 --- a/deps/uv/Makefile.am +++ b/deps/uv/Makefile.am @@ -425,8 +425,7 @@ libuv_la_SOURCES += src/unix/linux-core.c \ src/unix/linux-syscalls.h \ src/unix/procfs-exepath.c \ src/unix/proctitle.c \ - src/unix/sysinfo-loadavg.c \ - src/unix/sysinfo-memory.c + src/unix/sysinfo-loadavg.c test_run_tests_LDFLAGS += -lutil endif |