diff options
author | Christopher Faylor <me@cgf.cx> | 2000-10-25 17:57:43 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-10-25 17:57:43 +0000 |
commit | cffaf20bf38dc930052763a743c1550629c0163e (patch) | |
tree | 5d086f4781da2fbedefa76bd687ca88787ad1953 /winsup/cygwin/exceptions.cc | |
parent | 45a7e9572ff07e15358db1a1e2acbce5bf9d6070 (diff) | |
download | newlib-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.cc | 2 |
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 |