Navigation Menu

Skip to content

Commit

Permalink
Update uv and http_parser dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
creationix committed Apr 29, 2012
1 parent cde3562 commit d784942
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deps/http-parser
2 changes: 1 addition & 1 deletion deps/uv
Submodule uv updated 94 files
+2 −0 .gitignore
+4 −4 common.gypi
+1 −1 config-mingw.mk
+20 −12 config-unix.mk
+5 −1 gyp_uv
+3 −3 include/uv-private/ngx-queue.h
+13 −7 include/uv-private/tree.h
+40 −12 include/uv-private/uv-unix.h
+30 −19 include/uv-private/uv-win.h
+126 −47 include/uv.h
+58 −0 src/unix/async.c
+25 −17 src/unix/cares.c
+80 −0 src/unix/check.c
+81 −383 src/unix/core.c
+2 −1 src/unix/cygwin.c
+22 −0 src/unix/dl.c
+9 −0 src/unix/error.c
+1 −0 src/unix/ev/ev.c
+24 −0 src/unix/ev/ev_kqueue.c
+21 −18 src/unix/fs.c
+79 −0 src/unix/idle.c
+37 −90 src/unix/internal.h
+6 −37 src/unix/kqueue.c
+25 −253 src/unix/linux/core.c
+212 −0 src/unix/linux/inotify.c
+230 −0 src/unix/linux/syscalls.c
+87 −0 src/unix/linux/syscalls.h
+58 −0 src/unix/loop.c
+2 −1 src/unix/openbsd.c
+7 −18 src/unix/pipe.c
+79 −0 src/unix/prepare.c
+43 −24 src/unix/process.c
+71 −20 src/unix/stream.c
+15 −18 src/unix/sunos.c
+2 −2 src/unix/tcp.c
+127 −0 src/unix/timer.c
+2 −2 src/unix/tty.c
+27 −30 src/unix/udp.c
+50 −37 src/uv-common.c
+16 −6 src/uv-common.h
+3 −3 src/win/async.c
+1 −0 src/win/cares.c
+3 −0 src/win/core.c
+24 −5 src/win/dl.c
+17 −0 src/win/error.c
+9 −4 src/win/fs-event.c
+102 −108 src/win/fs.c
+15 −16 src/win/handle.c
+12 −3 src/win/internal.h
+156 −124 src/win/pipe.c
+9 −4 src/win/process.c
+6 −3 src/win/stream.c
+177 −38 src/win/tcp.c
+15 −6 src/win/tty.c
+31 −8 src/win/udp.c
+111 −10 src/win/util.c
+17 −6 src/win/winapi.h
+48 −5 src/win/winsock.c
+1 −1 src/win/winsock.h
+6 −8 test/benchmark-ares.c
+3 −1 test/benchmark-pound.c
+1 −1 test/benchmark-thread.c
+0 −7 test/dns-server.c
+8 −0 test/echo-server.c
+1 −0 test/fixtures/load_error.node
+13 −206 test/run-tests.c
+1 −26 test/runner-unix.c
+1 −64 test/runner-win.c
+6 −2 test/runner.c
+0 −8 test/task.h
+43 −141 test/test-async.c
+17 −18 test/test-counters-init.c
+12 −9 test/test-cwd-and-chdir.c
+49 −0 test/test-dlerror.c
+119 −7 test/test-fs-event.c
+72 −2 test/test-fs.c
+3 −1 test/test-get-memory.c
+8 −8 test/test-gethostbyname.c
+209 −0 test/test-ipc-send-recv.c
+357 −21 test/test-ipc.c
+47 −0 test/test-list.h
+0 −6 test/test-loop-handles.c
+1 −0 test/test-ping-pong.c
+28 −0 test/test-pipe-connect-error.c
+19 −15 test/test-platform-output.c
+72 −4 test/test-ref.c
+103 −0 test/test-shutdown-close.c
+195 −11 test/test-spawn.c
+103 −21 test/test-stdio-over-pipes.c
+0 −1 test/test-tcp-writealot.c
+53 −11 test/test-tty.c
+0 −3 test/test-udp-multicast-ttl.c
+8 −7 test/test-udp-options.c
+34 −15 uv.gyp

0 comments on commit d784942

Please sign in to comment.