Permalink
Loading
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
deps: upgrade to libuv 1.38.1
Notable changes: - A probable compiler bug in VS2019 was causing a failed assertion in libuv which appeared to the user as though the system clock was drifting. The `uv_hrtime()` code on Windows has been rearranged to work around the issue. - On Linux, `uv_loadavg()` attempts to read from `/proc/loadavg` before falling back to calling `sysinfo()`. This works around a bug in LXC. - A deadlock in the Windows TTY code has been fixed. - An issue on macOS related to monotonic clocks jumping back in time has been worked around. PR-URL: #34187 Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com>
- Loading branch information
Showing
with
774 additions
and 148 deletions.
- +3 −0 deps/uv/AUTHORS
- +5 −5 deps/uv/CMakeLists.txt
- +39 −0 deps/uv/ChangeLog
- +4 −4 deps/uv/Makefile.am
- +1 −1 deps/uv/configure.ac
- +1 −1 deps/uv/include/uv/version.h
- +1 −0 deps/uv/m4/.gitignore
- +485 −0 deps/uv/m4/ax_pthread.m4
- +19 −22 deps/uv/src/unix/core.c
- +16 −7 deps/uv/src/unix/darwin.c
- +6 −10 deps/uv/src/unix/fs.c
- +5 −4 deps/uv/src/unix/kqueue.c
- +68 −58 deps/uv/src/unix/linux-core.c
- +0 −1 deps/uv/src/unix/os390-syscalls.c
- +4 −2 deps/uv/src/unix/pthread-fixes.c
- +4 −1 deps/uv/src/unix/tcp.c
- +0 −11 deps/uv/src/unix/thread.c
- +1 −1 deps/uv/src/unix/udp.c
- +2 −2 deps/uv/src/uv-common.c
- +8 −0 deps/uv/src/uv-common.h
- +1 −1 deps/uv/src/win/internal.h
- +1 −0 deps/uv/src/win/tty.c
- +3 −2 deps/uv/src/win/udp.c
- +14 −12 deps/uv/src/win/util.c
- +3 −1 deps/uv/test/test-list.h
- +5 −0 deps/uv/test/test-signal-multiple-loops.c
- +75 −0 deps/uv/test/test-udp-sendmmsg-error.c
- +0 −2 deps/uv/uv.gyp
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -32,7 +32,7 @@ | ||
|
|
||
| #define UV_VERSION_MAJOR 1 | ||
| #define UV_VERSION_MINOR 38 | ||
| #define UV_VERSION_PATCH 1 | ||
| #define UV_VERSION_IS_RELEASE 1 | ||
| #define UV_VERSION_SUFFIX "" | ||
|
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -1,4 +1,5 @@ | ||
| # Ignore libtoolize-generated files. | ||
| *.m4 | ||
| !as_case.m4 | ||
| !ax_pthread.m4 | ||
| !libuv-check-flags.m4 |
Oops, something went wrong.