The data contained in this repository can be downloaded to your computer using one of several clients.
Please see the documentation of your version control software client for more information.

Please select the desired protocol below to get the URL.

This URL has Read-Only access.

Statistics
| Branch: | Revision:

main_repo / src / process_wrap.cc @ 0544a586

History | View | Annotate | Download (10.1 KB)

# Date Author Comment
5432a1d9 06/11/2012 11:13 AM Bert Belder

process_wrap: set duplex flags when creating a pipe

4b021a35 06/09/2012 01:57 AM Charlie McConnell

child_process: expose UV_PROCESS_DETACHED as options.detached

3116522e 06/07/2012 03:20 PM Fedor Indutny

child_process: spawn().ref() and spawn().unref()

af98fc9d 06/01/2012 12:52 PM Fedor Indutny

child_process: new stdio API for .spawn() method

761e0c46 05/29/2012 10:26 AM Fedor Indutny

deps: upgrade libuv to 7556590

45de259b 05/21/2012 05:29 PM Oleg Efimov

Make UNWRAP macro generic.

3bcbd14b 04/28/2012 06:24 PM Bert Belder

process_wrap: don't use uv_spawn2

It was a temporary thing for the 0.6 branch only.

c8a10e97 04/28/2012 06:17 PM Bert Belder

Merge branch 'v0.6'

Conflicts:
deps/uv/include/uv-private/uv-unix.h
deps/uv/include/uv-private/uv-win.h
deps/uv/src/uv-common.c
deps/uv/src/win/fs.c
src/process_wrap.cc

db844b15 04/28/2012 05:51 PM ssuda

process: don't use strdup()

file and cwd can be directly used from Utf8Value.

Conflicts:

src/process_wrap.cc
3546383c 04/28/2012 05:36 PM Bert Belder

process_wrap: avoid leaking memory when throwing due to invalid arguments

55e4d549 04/27/2012 04:13 PM Bert Belder

Child process: support the `gid` and `uid` options

a26bee8f 04/17/2012 04:14 PM isaacs

MakeCallback: Consistent symbol usage

249c3c16 03/22/2012 08:02 PM ssuda

Avoiding unnecessary ToString() calls

String::Utf8Value and String::AsciiValue constructors take Handle<Value>
So no need to convert to Handle<String>

253ec6a6 03/20/2012 12:59 PM ssuda

process: don't use strdup()

file and cwd can be directly used from Utf8Value.

ff4a9d38 03/09/2012 06:14 PM Ben Noordhuis

core: use proper #include directives

74a8215a 02/06/2012 09:44 AM Ben Noordhuis

Revert support for isolates.

It was decided that the performance benefits that isolates offer (faster spin-up
times for worker processes, faster inter-worker communication, possibly a lower
memory footprint) are not actual bottlenecks for most people and do not outweigh...

9e6957b0 01/11/2012 03:17 PM Fedor Indutny

Merge branch 'v0.6'

Conflicts:
src/handle_wrap.cc
src/node_zlib.cc
src/process_wrap.cc

b07acb38 01/09/2012 02:54 PM Ben Noordhuis

child_process: fix segfault after failed spawn

The process handle is uninitialized when uv_spawn() fails so don't export the
handle to JS land when that happens. Attempts to close the uninitialized handle
resulted in segmentation faults and memory corruption....

20ba454e 12/28/2011 07:56 PM Ryan Dahl

Add node::Loop() and don't inc node_isolate.h in *.cc

node::Loop() replaces the NODE_LOOP macro. This avoids hitting
v8::Isolate::GetCurrent() for each loop lookup when HAVE_ISOLATE==0

f168f7d7 12/28/2011 07:56 PM Ryan Dahl

Remove node_isolate.h from node.h

356992fe 12/28/2011 07:56 PM Ben Noordhuis

isolates: isolate-ify the main loop

cdcb1118 11/09/2011 10:34 AM Ben Noordhuis

Remove stray NODE_MODULE() semi-colons.

60818b95 11/02/2011 01:00 PM Ryan Dahl

Add missing copyright headers

6cc42927 10/19/2011 07:53 PM Ryan Dahl

Display sys_errno when UV_UNKNOWN is returned

67b23573 10/19/2011 07:23 PM Ryan Dahl

Remove support for cygwin

3e667804 09/15/2011 03:03 PM Jeroen Janssen

Fix options_file_memory_leak

Fixes #1714.
Fixes #1715.

21cc4c49 08/31/2011 04:53 AM Ryan Dahl

Upgrade libuv to ea4271f

Required adding uv_default_loop() in many places.

567470b1 08/05/2011 04:57 PM Bert Belder

Child processes: support windowsVerbatimArguments option

2bbb4684 08/04/2011 12:40 PM Ben Noordhuis

child process: bind to libuv's kill process API

Fixes failing test test/simple/test-child-process-kill.js

624dd38d 07/31/2011 08:51 PM Ryan Dahl

child_process_uv: fix test/simple/test-child-process-env

ef767a15 07/31/2011 07:50 PM Ryan Dahl

child_process_uv: fix simple/test-child-process-cwd

19a62589 07/31/2011 07:24 PM Ryan Dahl

child_process_uv: add exec, fix simple/test-child-process-exec-cwd

7772f21b 07/31/2011 06:58 PM Ryan Dahl

initial pass at lib/child_process_uv.js

5501a5a6 07/29/2011 09:28 PM Paul Querna

Add stdlib include for free(), fixing build on linux after f01b241

f01b2410 07/29/2011 09:03 PM Ryan Dahl

add wrapper for uv_spawn

process.binding('process_wrap')