Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2007-03-08 00:51:27 +0300
committerChristopher Faylor <me@cgf.cx>2007-03-08 00:51:27 +0300
commitb8804b1ecd863cd8a7bcd4fcb4a6cc2c3555f93a (patch)
tree57728466c7e2a890136919e0c695ee844fb3624d /winsup
parentfcdca8816518347530de9015ed7dc759d0ad2c8f (diff)
* signal.cc (handle_sigprocmask): Remove extraneous sig_dispatch_pending.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/signal.cc1
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 9a194387c..8be1af46d 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2007-03-07 Christopher Faylor <me@cgf.cx>
+
+ * signal.cc (handle_sigprocmask): Remove extraneous
+ sig_dispatch_pending.
+
2007-03-07 Corinna Vinschen <corinna@vinschen.de>
* fhandler_proc.cc: Fix formatting. Drop setting errno when creating
diff --git a/winsup/cygwin/signal.cc b/winsup/cygwin/signal.cc
index ff769e471..575c46c53 100644
--- a/winsup/cygwin/signal.cc
+++ b/winsup/cygwin/signal.cc
@@ -153,7 +153,6 @@ sigprocmask (int how, const sigset_t *set, sigset_t *oldset)
int __stdcall
handle_sigprocmask (int how, const sigset_t *set, sigset_t *oldset, sigset_t& opmask)
{
- sig_dispatch_pending ();
/* check that how is in right range */
if (how != SIG_BLOCK && how != SIG_UNBLOCK && how != SIG_SETMASK)
{