* fork.cc (fork_parent): Don't copy signals from parent to child here.
* sigproc.cc (proc_subproc): Copy signals from parent to child pinfo here.
This commit is contained in:
Christopher Faylor
2003-03-26 04:18:01 +00:00
parent b2b9de805f
commit 85738bf7e3
3 changed files with 37 additions and 32 deletions

View File

@ -525,7 +525,6 @@ fork_parent (HANDLE& hParent, dll *&first_dll,
/* Fill in fields in the child's process table entry. */
forked->hProcess = pi.hProcess;
forked->dwProcessId = pi.dwProcessId;
forked->copysigs (myself);
/* Hopefully, this will succeed. The alternative to doing things this
way is to reserve space prior to calling CreateProcess and then fill