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.33.1
Notable changes: - uv_random() has been added. - More work to read those pesky Windows environment variables. - Several build fixes for Tier 3 platforms (Android, NetBSD, OpenBSD, Haiku). - Stop using fsevents to watch files (using kqueue again). PR-URL: #29996 Backport-PR-URL: #31969 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
- Loading branch information
Showing
with
1,276 additions
and 228 deletions.
- +8 −0 deps/uv/AUTHORS
- +33 −9 deps/uv/CMakeLists.txt
- +80 −0 deps/uv/ChangeLog
- +11 −7 deps/uv/Makefile.am
- +1 −6 deps/uv/SUPPORTED_PLATFORMS.md
- +3 −1 deps/uv/configure.ac
- +11 −3 deps/uv/docs/src/fs.rst
- +10 −4 deps/uv/docs/src/handle.rst
- +45 −0 deps/uv/docs/src/misc.rst
- +38 −0 deps/uv/docs/src/tty.rst
- +41 −0 deps/uv/include/uv.h
- +2 −2 deps/uv/include/uv/version.h
- +121 −0 deps/uv/src/random.c
- +4 −0 deps/uv/src/threadpool.c
- +2 −0 deps/uv/src/unix/android-ifaddrs.c
- +2 −0 deps/uv/src/unix/bsd-ifaddrs.c
- +4 −2 deps/uv/src/unix/core.c
- +63 −76 deps/uv/src/unix/darwin-proctitle.c
- +15 −15 deps/uv/src/unix/fs.c
- +4 −2 deps/uv/src/unix/fsevents.c
- +6 −0 deps/uv/src/unix/internal.h
- +26 −18 deps/uv/src/unix/kqueue.c
- +45 −8 deps/uv/src/unix/linux-core.c
- +25 −0 deps/uv/src/unix/linux-syscalls.c
- +1 −0 deps/uv/src/unix/linux-syscalls.h
- +1 −1 deps/uv/src/unix/openbsd.c
- +1 −1 deps/uv/src/unix/pipe.c
- +4 −0 deps/uv/src/unix/proctitle.c
- +93 −0 deps/uv/src/unix/random-devurandom.c
- +57 −0 deps/uv/src/unix/random-getentropy.c
- +88 −0 deps/uv/src/unix/random-getrandom.c
- +100 −0 deps/uv/src/unix/random-sysctl.c
- +7 −0 deps/uv/src/unix/tty.c
- +10 −10 deps/uv/src/unix/udp.c
- +3 −0 deps/uv/src/uv-common.c
- +3 −14 deps/uv/src/win/fs.c
- +2 −0 deps/uv/src/win/internal.h
- +1 −1 deps/uv/src/win/tcp.c
- +26 −18 deps/uv/src/win/tty.c
- +16 −1 deps/uv/src/win/util.c
- +11 −0 deps/uv/src/win/winapi.c
- +8 −0 deps/uv/src/win/winapi.h
- +8 −0 deps/uv/src/win/winsock.h
- +7 −1 deps/uv/test/test-env-vars.c
- +1 −1 deps/uv/test/test-fs-copyfile.c
- +55 −17 deps/uv/test/test-fs-event.c
- +1 −1 deps/uv/test/test-fs-readdir.c
- +4 −0 deps/uv/test/test-ip4-addr.c
- +9 −0 deps/uv/test/test-ip6-addr.c
- +8 −0 deps/uv/test/test-list.h
- +1 −5 deps/uv/test/test-process-title-threadsafe.c
- +94 −0 deps/uv/test/test-random.c
- +41 −0 deps/uv/test/test-threadpool-cancel.c
- +2 −2 deps/uv/test/test.gyp
- +13 −2 deps/uv/uv.gyp
There are no files selected for viewing
Oops, something went wrong.