Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
windows: set the child_pid property for all IPC pipes in uv_spawn
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed Jun 19, 2012
1 parent 382f2a2 commit 6709065
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/win/process.c
Expand Up @@ -747,7 +747,7 @@ void uv_process_endgame(uv_loop_t* loop, uv_process_t* handle) {

int uv_spawn(uv_loop_t* loop, uv_process_t* process,
uv_process_options_t options) {
int size, err = 0, keep_child_stdio_open = 0;
int i, size, err = 0, keep_child_stdio_open = 0;
wchar_t* path = NULL;
BOOL result;
wchar_t* application_path = NULL, *application = NULL, *arguments = NULL,
Expand Down Expand Up @@ -850,11 +850,14 @@ int uv_spawn(uv_loop_t* loop, uv_process_t* process,
process->process_handle = info.hProcess;
process->pid = info.dwProcessId;

if (options.stdio_count > 0 &&
options.stdio[0].flags & UV_CREATE_PIPE &&
options.stdio[0].data.stream->type == UV_NAMED_PIPE &&
((uv_pipe_t*)options.stdio[0].data.stream)->ipc) {
((uv_pipe_t*)options.stdio[0].data.stream)->ipc_pid = info.dwProcessId;
/* Set IPC pid to all IPC pipes. */
for (i = 0; i < options.stdio_count; i++) {
const uv_stdio_container_t* fdopt = &options.stdio[i];
if (fdopt->flags & UV_CREATE_PIPE &&
fdopt->data.stream->type == UV_NAMED_PIPE &&
((uv_pipe_t*) fdopt->data.stream)->ipc) {
((uv_pipe_t*) fdopt->data.stream)->ipc_pid = info.dwProcessId;
}
}

/* Setup notifications for when the child process exits. */
Expand Down

0 comments on commit 6709065

Please sign in to comment.