-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule luv
updated
47 files
+5 −0 | .ci/bindcov.sh | |
+35 −0 | .ci/docscov.sh | |
+0 −1 | .ci/lsan_build.supp | |
+3 −11 | .ci/platform.sh | |
+9 −0 | .ci/pthread_create.supp | |
+1 −1 | .ci/setenv_lua.sh | |
+7 −7 | .ci/setup_lua.sh | |
+2 −0 | .clang-format | |
+2 −0 | .clangd | |
+178 −0 | .github/workflows/ci.yml | |
+0 −122 | .travis.yml | |
+32 −14 | CMakeLists.txt | |
+1 −1 | README.md | |
+1 −1 | deps/libuv | |
+1 −1 | deps/lua | |
+11 −0 | deps/luajit.cmake | |
+29 −1 | docs.md | |
+1 −0 | luv-scm-0.rockspec | |
+1 −1 | src/async.c | |
+1 −1 | src/check.c | |
+4 −4 | src/dns.c | |
+36 −36 | src/fs.c | |
+1 −1 | src/fs_event.c | |
+1 −1 | src/fs_poll.c | |
+1 −1 | src/idle.c | |
+1 −1 | src/lhandle.c | |
+1 −1 | src/loop.c | |
+1 −1 | src/lreq.c | |
+59 −23 | src/luv.c | |
+48 −14 | src/luv.h | |
+1 −1 | src/misc.c | |
+3 −4 | src/pipe.c | |
+2 −2 | src/poll.c | |
+1 −1 | src/prepare.c | |
+3 −2 | src/private.h | |
+1 −1 | src/process.c | |
+1 −1 | src/signal.c | |
+18 −3 | src/stream.c | |
+2 −2 | src/tcp.c | |
+38 −13 | src/thread.c | |
+1 −1 | src/timer.c | |
+1 −1 | src/tty.c | |
+2 −2 | src/udp.c | |
+54 −9 | src/work.c | |
+6 −5 | tests/test-timer.lua | |
+14 −0 | tests/test-udp.lua | |
+28 −0 | tests/test-work.lua |