* exceptions.cc (sig_handle): Just make sure that wait_sig loops when receiving
a SIGCONT. Don't block waiting for completion that will never occur.
This commit is contained in:
parent
45a7e9572f
commit
cffaf20bf3
|
@ -1,3 +1,9 @@
|
||||||
|
Wed Oct 25 13:56:39 2000 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
|
* exceptions.cc (sig_handle): Just make sure that wait_sig loops when
|
||||||
|
receiving a SIGCONT. Don't block waiting for completion that will
|
||||||
|
never occur.
|
||||||
|
|
||||||
Wed Oct 25 09:59:14 2000 Christopher Faylor <cgf@cygnus.com>
|
Wed Oct 25 09:59:14 2000 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
* dtable.cc (dtable::fixup_after_exec): Use variable rather than
|
* dtable.cc (dtable::fixup_after_exec): Use variable rather than
|
||||||
|
|
|
@ -947,7 +947,7 @@ sig_handle (int sig)
|
||||||
while (ResumeThread (hMainThread) > 1)
|
while (ResumeThread (hMainThread) > 1)
|
||||||
;
|
;
|
||||||
/* process pending signals */
|
/* process pending signals */
|
||||||
sig_dispatch_pending ();
|
sig_dispatch_pending (1);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
|
|
Loading…
Reference in New Issue