aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/exceptions.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-10-25 17:57:43 +0000
committerChristopher Faylor <me@cgf.cx>2000-10-25 17:57:43 +0000
commitcffaf20bf38dc930052763a743c1550629c0163e (patch)
tree5d086f4781da2fbedefa76bd687ca88787ad1953 /winsup/cygwin/exceptions.cc
parent45a7e9572ff07e15358db1a1e2acbce5bf9d6070 (diff)
downloadnewlib-cffaf20bf38dc930052763a743c1550629c0163e.zip
newlib-cffaf20bf38dc930052763a743c1550629c0163e.tar.gz
newlib-cffaf20bf38dc930052763a743c1550629c0163e.tar.bz2
* 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.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r--winsup/cygwin/exceptions.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc
index 38879ee..d9ce5b5 100644
--- a/winsup/cygwin/exceptions.cc
+++ b/winsup/cygwin/exceptions.cc
@@ -947,7 +947,7 @@ sig_handle (int sig)
while (ResumeThread (hMainThread) > 1)
;
/* process pending signals */
- sig_dispatch_pending ();
+ sig_dispatch_pending (1);
}
#if 0