* spawn.cc (spawn_guts): Restore dependency on signal_arrived. It's needed to
wake up the WaitForSingleObject.
This commit is contained in:
parent
1b534ee1be
commit
181438ea70
|
@ -1,3 +1,8 @@
|
||||||
|
Wed Mar 15 14:25:38 2000 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
|
* spawn.cc (spawn_guts): Restore dependency on signal_arrived. It's
|
||||||
|
needed to wake up the WaitForSingleObject.
|
||||||
|
|
||||||
Tue Mar 14 23:41:16 2000 Christopher Faylor <cgf@cygnus.com>
|
Tue Mar 14 23:41:16 2000 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
Pipe changes throughout suggested by Eric Fifer <EFifer@sanwaint.com>
|
Pipe changes throughout suggested by Eric Fifer <EFifer@sanwaint.com>
|
||||||
|
|
|
@ -635,8 +635,8 @@ skip_arg_parsing:
|
||||||
{
|
{
|
||||||
BOOL exited;
|
BOOL exited;
|
||||||
|
|
||||||
HANDLE waitbuf[2] = {pi.hProcess, spr};
|
HANDLE waitbuf[3] = {pi.hProcess, signal_arrived, spr};
|
||||||
int nwait = 2;
|
int nwait = 3;
|
||||||
|
|
||||||
SetThreadPriority (GetCurrentThread (), THREAD_PRIORITY_HIGHEST);
|
SetThreadPriority (GetCurrentThread (), THREAD_PRIORITY_HIGHEST);
|
||||||
res = 0;
|
res = 0;
|
||||||
|
@ -675,6 +675,10 @@ skip_arg_parsing:
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case WAIT_OBJECT_0 + 1:
|
case WAIT_OBJECT_0 + 1:
|
||||||
|
sigproc_printf ("signal arrived");
|
||||||
|
ResetEvent (signal_arrived);
|
||||||
|
continue;
|
||||||
|
case WAIT_OBJECT_0 + 2:
|
||||||
res = EXIT_REPARENTING;
|
res = EXIT_REPARENTING;
|
||||||
MALLOC_CHECK;
|
MALLOC_CHECK;
|
||||||
ForceCloseHandle (spr);
|
ForceCloseHandle (spr);
|
||||||
|
|
Loading…
Reference in New Issue