diff options
Diffstat (limited to 'winsup/cygwin/fork.cc')
-rw-r--r-- | winsup/cygwin/fork.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fork.cc b/winsup/cygwin/fork.cc index e3b606607..649baa3e3 100644 --- a/winsup/cygwin/fork.cc +++ b/winsup/cygwin/fork.cc @@ -414,7 +414,7 @@ fork_parent (HANDLE&, dll *&first_dll, bool& load_dlls, void *stack_here, child_ #endif /* Wait for subproc to initialize itself. */ - if (!ch.sync (child, FORK_WAIT_TIMEOUT)) + if (!ch.sync (child->pid, pi.hProcess, FORK_WAIT_TIMEOUT)) { system_printf ("child %d died waiting for longjmp before initialization", child_pid); goto cleanup; @@ -465,7 +465,7 @@ fork_parent (HANDLE&, dll *&first_dll, bool& load_dlls, void *stack_here, child_ /* Start thread, and wait for it to reload dlls. */ if (!resume_child (forker_finished)) goto cleanup; - else if (!ch.sync (child, FORK_WAIT_TIMEOUT)) + else if (!ch.sync (child->pid, pi.hProcess, FORK_WAIT_TIMEOUT)) { system_printf ("child %d died waiting for dll loading", child_pid); goto cleanup; |