Skip to content

Commit

Permalink
Update libuv to v1.31.0
Browse files Browse the repository at this point in the history
  • Loading branch information
1st1 committed Aug 14, 2019
1 parent 1382439 commit 1fad621
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/libuv
Submodule libuv updated 78 files
+1 −0 .gitattributes
+3 −0 .github/ISSUE_TEMPLATE.md
+1 −0 .gitignore
+2 −0 .mailmap
+20 −0 AUTHORS
+10 −7 CMakeLists.txt
+160 −1 ChangeLog
+39 −2 Makefile.am
+9 −6 README.md
+6 −1 configure.ac
+4 −0 docs/src/async.rst
+3 −1 docs/src/design.rst
+51 −1 docs/src/fs.rst
+1 −1 docs/src/guide/basics.rst
+1 −1 docs/src/guide/threads.rst
+41 −0 docs/src/misc.rst
+0 −1 docs/src/sphinx-plugins/manpage.py
+3 −1 docs/src/threadpool.rst
+27 −1 include/uv.h
+7 −4 include/uv/unix.h
+1 −1 include/uv/version.h
+1 −0 include/uv/win.h
+1 −1 src/fs-poll.c
+1 −1 src/threadpool.c
+5 −0 src/unix/aix.c
+33 −4 src/unix/async.c
+6 −1 src/unix/bsd-ifaddrs.c
+120 −6 src/unix/core.c
+4 −0 src/unix/cygwin.c
+79 −68 src/unix/darwin-proctitle.c
+5 −0 src/unix/darwin.c
+5 −0 src/unix/freebsd.c
+141 −21 src/unix/fs.c
+2 −1 src/unix/fsevents.c
+176 −0 src/unix/haiku.c
+139 −3 src/unix/ibmi.c
+10 −0 src/unix/internal.h
+6 −6 src/unix/kqueue.c
+138 −18 src/unix/linux-core.c
+4 −1 src/unix/linux-syscalls.c
+5 −0 src/unix/netbsd.c
+6 −1 src/unix/openbsd.c
+5 −0 src/unix/os390.c
+9 −2 src/unix/process.c
+0 −4 src/unix/proctitle.c
+1 −1 src/unix/signal.c
+2 −2 src/unix/stream.c
+5 −0 src/unix/sunos.c
+28 −7 src/unix/thread.c
+11 −0 src/uv-common.c
+178 −0 src/win/fs-fd-hash-inl.h
+492 −24 src/win/fs.c
+2 −2 src/win/process.c
+19 −2 src/win/tty.c
+82 −6 src/win/util.c
+8 −0 src/win/winapi.c
+12 −0 src/win/winapi.h
+1 −0 test/fixtures/lorem_ipsum.txt
+6 −0 test/runner-win.c
+4 −0 test/task.h
+7 −0 test/test-cwd-and-chdir.c
+36 −1 test/test-env-vars.c
+9 −1 test/test-fs-copyfile.c
+133 −0 test/test-fs-fd-hash.c
+435 −0 test/test-fs-open-flags.c
+39 −0 test/test-fs-poll.c
+388 −50 test/test-fs.c
+4 −2 test/test-get-memory.c
+2 −2 test/test-ipc.c
+28 −2 test/test-list.h
+1 −1 test/test-pipe-getsockname.c
+5 −1 test/test-process-title-threadsafe.c
+15 −11 test/test-queue-foreach-delete.c
+34 −0 test/test-spawn.c
+109 −0 test/test-tcp-try-write-error.c
+11 −0 test/test-tmpdir.c
+3 −0 test/test.gyp
+0 −1 uv.gyp

0 comments on commit 1fad621

Please sign in to comment.