Skip to content

Commit

Permalink
bump libuv to get UV_POLL
Browse files Browse the repository at this point in the history
I want to use UV_POLL for adding a traceroute API. Bump to get it.

UV_ARES_EVENT only exists in win32 now. Guard it.
  • Loading branch information
Brandon Philips committed May 7, 2012
1 parent 3fad442 commit d8bf920
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion deps/uv
Submodule uv updated 92 files
+4 −4 common.gypi
+20 −11 config-unix.mk
+5 −1 gyp_uv
+9 −3 include/uv-private/tree.h
+36 −12 include/uv-private/uv-unix.h
+75 −20 include/uv-private/uv-win.h
+199 −54 include/uv.h
+58 −0 src/unix/async.c
+25 −17 src/unix/cares.c
+80 −0 src/unix/check.c
+88 −407 src/unix/core.c
+1 −1 src/unix/cygwin.c
+4 −1 src/unix/darwin.c
+35 −44 src/unix/dl.c
+8 −0 src/unix/error.c
+24 −0 src/unix/ev/ev_kqueue.c
+21 −18 src/unix/fs.c
+79 −0 src/unix/idle.c
+49 −110 src/unix/internal.h
+2 −34 src/unix/kqueue.c
+26 −12 src/unix/linux/core.c
+20 −141 src/unix/linux/inotify.c
+230 −0 src/unix/linux/syscalls.c
+87 −0 src/unix/linux/syscalls.h
+67 −0 src/unix/loop.c
+2 −1 src/unix/openbsd.c
+13 −20 src/unix/pipe.c
+130 −0 src/unix/poll.c
+79 −0 src/unix/prepare.c
+48 −31 src/unix/process.c
+58 −31 src/unix/stream.c
+50 −37 src/unix/sunos.c
+6 −4 src/unix/tcp.c
+127 −0 src/unix/timer.c
+2 −2 src/unix/tty.c
+27 −30 src/unix/udp.c
+44 −34 src/uv-common.c
+13 −3 src/uv-common.h
+3 −3 src/win/async.c
+1 −2 src/win/cares.c
+13 −1 src/win/core.c
+40 −36 src/win/dl.c
+24 −0 src/win/error.c
+9 −4 src/win/fs-event.c
+95 −110 src/win/fs.c
+18 −15 src/win/handle.c
+56 −25 src/win/internal.h
+54 −45 src/win/pipe.c
+609 −0 src/win/poll.c
+8 −3 src/win/process.c
+4 −0 src/win/req.c
+2 −2 src/win/stream.c
+169 −34 src/win/tcp.c
+0 −1 src/win/timer.c
+0 −3 src/win/tty.c
+28 −8 src/win/udp.c
+103 −7 src/win/util.c
+4 −0 src/win/winapi.c
+12 −3 src/win/winapi.h
+87 −0 src/win/winsock.c
+36 −3 src/win/winsock.h
+6 −8 test/benchmark-ares.c
+1 −0 test/benchmark-sizes.c
+0 −7 test/dns-server.c
+8 −0 test/echo-server.c
+9 −207 test/run-tests.c
+1 −26 test/runner-unix.c
+0 −63 test/runner-win.c
+2 −1 test/runner.c
+0 −8 test/task.h
+43 −141 test/test-async.c
+2 −3 test/test-counters-init.c
+17 −8 test/test-dlerror.c
+119 −7 test/test-fs-event.c
+3 −1 test/test-get-memory.c
+8 −8 test/test-gethostbyname.c
+1 −0 test/test-ipc-send-recv.c
+336 −11 test/test-ipc.c
+23 −0 test/test-list.h
+0 −6 test/test-loop-handles.c
+1 −0 test/test-ping-pong.c
+1 −1 test/test-pipe-connect-error.c
+19 −15 test/test-platform-output.c
+573 −0 test/test-poll.c
+2 −0 test/test-shutdown-close.c
+195 −11 test/test-spawn.c
+103 −21 test/test-stdio-over-pipes.c
+2 −2 test/test-tcp-write-error.c
+0 −1 test/test-tcp-writealot.c
+0 −3 test/test-udp-multicast-ttl.c
+8 −7 test/test-udp-options.c
+25 −14 uv.gyp
2 changes: 2 additions & 0 deletions src/utils.c
Expand Up @@ -108,7 +108,9 @@ const char* luv_handle_type_to_string(uv_handle_type type) {
case UV_IDLE: return "IDLE";
case UV_ASYNC: return "ASYNC";
case UV_ARES_TASK: return "ARES_TASK";
#ifdef UV_ARES_EVENT
case UV_ARES_EVENT: return "ARES_EVENT";
#endif
case UV_PROCESS: return "PROCESS";
case UV_FS_EVENT: return "FS_EVENT";
default: return "UNKNOWN_HANDLE";
Expand Down

0 comments on commit d8bf920

Please sign in to comment.