Permalink
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.25.0
PR-URL: #25571 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
- Loading branch information
Showing
with
779 additions
and 360 deletions.
- +1 −0 deps/uv/.mailmap
- +4 −0 deps/uv/AUTHORS
- +2 −1 deps/uv/CMakeLists.txt
- +51 −0 deps/uv/ChangeLog
- +7 −2 deps/uv/Makefile.am
- +3 −1 deps/uv/configure.ac
- +0 −9 deps/uv/docs/src/fs.rst
- +22 −0 deps/uv/docs/src/misc.rst
- +15 −2 deps/uv/include/uv.h
- +3 −1 deps/uv/include/uv/unix.h
- +2 −2 deps/uv/include/uv/version.h
- +17 −2 deps/uv/src/unix/aix.c
- +1 −4 deps/uv/src/unix/bsd-ifaddrs.c
- +57 −0 deps/uv/src/unix/core.c
- +13 −1 deps/uv/src/unix/fs.c
- +36 −34 deps/uv/src/unix/fsevents.c
- +0 −18 deps/uv/src/unix/internal.h
- +39 −40 deps/uv/src/unix/kqueue.c
- +69 −92 deps/uv/src/unix/stream.c
- +4 −2 deps/uv/src/unix/thread.c
- +8 −4 deps/uv/src/unix/udp.c
- +5 −2 deps/uv/src/win/fs-event.c
- +2 −70 deps/uv/src/win/fs.c
- +3 −6 deps/uv/src/win/pipe.c
- +6 −0 deps/uv/src/win/thread.c
- +6 −3 deps/uv/src/win/tty.c
- +117 −0 deps/uv/src/win/util.c
- +4 −0 deps/uv/src/win/winapi.c
- +4 −0 deps/uv/src/win/winapi.h
- +5 −0 deps/uv/test/run-tests.c
- +71 −31 deps/uv/test/test-fs-event.c
- +1 −1 deps/uv/test/test-ipc-heavy-traffic-deadlock-bug.c
- +0 −3 deps/uv/test/test-ipc-send-recv.c
- +112 −29 deps/uv/test/test-ipc.c
- +10 −0 deps/uv/test/test-list.h
- +9 −0 deps/uv/test/test-platform-output.c
- +69 −0 deps/uv/test/test-uname.c
- +1 −0 deps/uv/test/test.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
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
| @@ -233,15 +233,6 @@ API | ||
| Equivalent to :man:`rename(2)`. | ||
| .. c:function:: int uv_fs_fsync(uv_loop_t* loop, uv_fs_t* req, uv_file file, uv_fs_cb cb) | ||
| Equivalent to :man:`fsync(2)`. | ||
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
| @@ -31,8 +31,8 @@ | ||
| */ | ||
|
|
||
| #define UV_VERSION_MAJOR 1 | ||
| #define UV_VERSION_MINOR 25 | ||
| #define UV_VERSION_PATCH 0 | ||
| #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
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
Oops, something went wrong.