Skip to content

Commit

Permalink
Update libuv to v1.41.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Caswell committed Apr 12, 2021
1 parent 10a27c2 commit 75bb232
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/libuv
Submodule libuv updated 68 files
+17 −0 .github/workflows/sanitizer.yml
+2 −0 .mailmap
+12 −1 AUTHORS
+12 −2 CMakeLists.txt
+80 −1 ChangeLog
+2 −5 Makefile.am
+10 −0 README.md
+2 −2 SUPPORTED_PLATFORMS.md
+2 −1 configure.ac
+18 −0 docs/src/pipe.rst
+44 −17 docs/src/poll.rst
+7 −5 docs/src/process.rst
+5 −0 docs/src/stream.rst
+20 −4 docs/src/tcp.rst
+7 −5 docs/src/udp.rst
+12 −3 include/uv.h
+1 −1 include/uv/version.h
+1 −0 src/timer.c
+1 −1 src/unix/async.c
+3 −3 src/unix/bsd-ifaddrs.c
+2 −3 src/unix/core.c
+31 −13 src/unix/fs.c
+0 −6 src/unix/internal.h
+33 −28 src/unix/linux-core.c
+17 −20 src/unix/linux-syscalls.c
+2 −2 src/unix/linux-syscalls.h
+54 −0 src/unix/pipe.c
+9 −0 src/unix/poll.c
+1 −63 src/unix/process.c
+1 −0 src/unix/proctitle.c
+1 −1 src/unix/signal.c
+3 −9 src/unix/stream.c
+51 −2 src/unix/tcp.c
+19 −0 src/uv-common.c
+4 −0 src/uv-common.h
+24 −25 src/win/fs.c
+2 −2 src/win/internal.h
+213 −15 src/win/pipe.c
+0 −96 src/win/process-stdio.c
+3 −10 src/win/stream.c
+137 −6 src/win/tcp.c
+2 −0 test/benchmark-pump.c
+1 −0 test/blackhole-server.c
+3 −2 test/echo-server.c
+27 −9 test/run-tests.c
+22 −18 test/task.h
+17 −13 test/test-close-fd.c
+3 −0 test/test-error.c
+3 −0 test/test-fs-copyfile.c
+3 −0 test/test-fs-event.c
+3 −0 test/test-fs-readdir.c
+108 −42 test/test-fs.c
+2 −2 test/test-getaddrinfo.c
+6 −1 test/test-ipc.c
+21 −9 test/test-list.h
+178 −43 test/test-ping-pong.c
+3 −0 test/test-pipe-connect-error.c
+6 −2 test/test-pipe-getsockname.c
+39 −14 test/test-pipe-set-non-blocking.c
+1 −0 test/test-platform-output.c
+99 −0 test/test-poll-multiple-handles.c
+7 −1 test/test-shutdown-eof.c
+64 −60 test/test-spawn.c
+47 −2 test/test-tcp-bind-error.c
+1 −1 test/test-tcp-connect-timeout.c
+3 −0 test/test-tty.c
+1 −1 test/test-udp-connect.c
+3 −5 tools/make_dist_html.py

0 comments on commit 75bb232

Please sign in to comment.