summaryrefslogtreecommitdiffstats
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
parent45a7e9572ff07e15358db1a1e2acbce5bf9d6070 (diff)
downloadcygnal-cffaf20bf38dc930052763a743c1550629c0163e.tar.gz
cygnal-cffaf20bf38dc930052763a743c1550629c0163e.tar.bz2
cygnal-cffaf20bf38dc930052763a743c1550629c0163e.zip
* 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.
-rw-r--r--winsup/cygwin/ChangeLog6
-rw-r--r--winsup/cygwin/exceptions.cc2
2 files changed, 7 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 5d00f4b53..fc84f3a48 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -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>
* dtable.cc (dtable::fixup_after_exec): Use variable rather than
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc
index 38879ee6e..d9ce5b58b 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