Skip to content

Instantly share code, notes, and snippets.

@sh1mmer
Created October 10, 2011 00:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sh1mmer/1274420 to your computer and use it in GitHub Desktop.
Save sh1mmer/1274420 to your computer and use it in GitHub Desktop.
Enki:~/Code/node(master) $ git diff --stat origin/master
deps/uv/Makefile | 2 +-
deps/uv/include/uv-private/uv-win.h | 1 +
deps/uv/include/uv.h | 8 +-
deps/uv/src/unix/process.c | 10 +-
deps/uv/src/unix/stream.c | 19 +-
deps/uv/src/win/error.c | 2 +
deps/uv/src/win/fs-event.c | 71 +++-
deps/uv/src/win/internal.h | 3 +-
deps/uv/src/win/pipe.c | 17 +-
deps/uv/src/win/process.c | 4 +-
deps/uv/test/test-fs.c | 28 ++-
deps/uv/test/test-ipc.c | 1 +
doc/api/child_processes.markdown | 8 +-
lib/child_process_legacy.js | 6 +-
lib/child_process_uv.js | 122 +++++++-
lib/fs.js | 8 +-
lib/http.js | 4 +-
lib/net_uv.js | 61 ++--
node.gyp | 3 +
src/node.cc | 4 +
src/node.js | 6 +
src/node_os.cc | 15 +-
src/pipe_wrap.cc | 8 +-
src/pipe_wrap.h | 2 +-
src/platform.h | 3 -
src/platform_cygwin.cc | 20 -
src/platform_darwin.cc | 43 ---
src/platform_freebsd.cc | 43 ---
src/platform_linux.cc | 29 --
src/platform_openbsd.cc | 48 ---
src/platform_sunos.cc | 46 ---
src/platform_win32.cc | 33 --
src/stream_wrap.cc | 78 ++++-
src/stream_wrap.h | 7 +-
src/tcp_wrap.cc | 480 +++++++++++++-------------
src/tcp_wrap.h | 37 ++
test/fixtures/fork2.js | 26 ++
test/simple/test-child-process-fork.js | 24 ++
test/simple/test-child-process-fork2.js | 55 +++
test/simple/test-child-process-spawn-node.js | 24 --
test/simple/test-executable-path.js | 26 +-
41 files changed, 796 insertions(+), 639 deletions(-)
Enki:~/Code/node(master) $ git pull origin master
From https://github.com/joyent/node
* branch master -> FETCH_HEAD
Already up-to-date.
Enki:~/Code/node(master) $
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment