Skip to content

Commit

Permalink
Update Libuv to 1.44.2 (#608)
Browse files Browse the repository at this point in the history
  • Loading branch information
squeek502 authored Jul 13, 2022
1 parent f76de74 commit e797c85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ project (luv C ASM)

set(LUV_VERSION_MAJOR 1)
set(LUV_VERSION_MINOR 44)
set(LUV_VERSION_PATCH 1)
set(LUV_VERSION_PATCH 2)
set(LUV_VERSION ${LUV_VERSION_MAJOR}.${LUV_VERSION_MINOR}.${LUV_VERSION_PATCH})

if(NOT ${CMAKE_VERSION} VERSION_LESS "3.5.0")
Expand Down
2 changes: 1 addition & 1 deletion deps/libuv
Submodule libuv updated 68 files
+32 −0 .github/workflows/CI-sample.yml
+53 −42 .github/workflows/CI-unix.yml
+51 −0 .github/workflows/CI-win.yml
+19 −4 .github/workflows/sanitizer.yml
+9 −0 AUTHORS
+9 −1 CMakeLists.txt
+129 −1 ChangeLog
+7 −6 MAINTAINERS.md
+10 −2 Makefile.am
+0 −1 SUPPORTED_PLATFORMS.md
+32 −3 autogen.sh
+5 −2 configure.ac
+51 −0 docs/code/CMakeLists.txt
+2 −2 docs/code/cgi/main.c
+7 −7 docs/code/interfaces/main.c
+2 −3 docs/code/thread-create/main.c
+2 −1 docs/code/udp-dhcp/main.c
+0 −1 docs/code/uvcat/main.c
+0 −1 docs/code/uvtee/main.c
+1 −1 docs/src/guide/introduction.rst
+1 −1 docs/src/guide/utilities.rst
+1 −1 include/uv/version.h
+6 −0 include/uv/win.h
+16 −0 m4/libuv-check-flags.m4
+7 −0 m4/libuv-check-versions.m4
+52 −0 src/strtok.c
+27 −0 src/strtok.h
+8 −7 src/unix/atomic-ops.h
+59 −51 src/unix/core.c
+2 −1 src/unix/fs.c
+0 −1 src/unix/internal.h
+1 −1 src/unix/kqueue.c
+19 −17 src/unix/os390-syscalls.c
+232 −57 src/unix/os390.c
+4 −2 src/unix/pipe.c
+22 −18 src/unix/process.c
+25 −70 src/unix/stream.c
+29 −7 src/unix/sunos.c
+13 −4 src/unix/tcp.c
+62 −16 src/unix/tty.c
+9 −0 src/unix/udp.c
+3 −1 src/uv-common.c
+10 −3 src/win/core.c
+1 −1 src/win/error.c
+7 −2 src/win/internal.h
+251 −199 src/win/pipe.c
+3 −10 src/win/req-inl.h
+9 −2 src/win/stream.c
+67 −64 src/win/tcp.c
+34 −32 src/win/tty.c
+3 −2 src/win/udp.c
+0 −77 test/test-callback-order.c
+38 −98 test/test-embed.c
+41 −19 test/test-fs-event.c
+9 −8 test/test-getsockname.c
+26 −0 test/test-idle.c
+20 −4 test/test-list.h
+16 −0 test/test-pipe-bind-error.c
+1 −2 test/test-pipe-set-non-blocking.c
+34 −3 test/test-spawn.c
+90 −0 test/test-strtok.c
+18 −0 test/test-tcp-bind-error.c
+183 −0 test/test-tcp-close-after-read-timeout.c
+46 −0 test/test-tcp-close-reset.c
+107 −0 test/test-tcp-rst.c
+25 −2 test/test-timer.c
+0 −4 test/test-udp-connect.c
+0 −4 test/test-udp-connect6.c

0 comments on commit e797c85

Please sign in to comment.