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
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-08-28 00:42:52 +0400
committerChristopher Faylor <me@cgf.cx>2003-08-28 00:42:52 +0400
commit90f4768b783c108356dcdd498df1b82886c6bc94 (patch)
tree876db740a9edde303028d8fcb804159dc35f05c2 /winsup/cygwin
parent0903a4aacf6a05b516dbdef54f3ec2b51f61500f (diff)
* sigproc.cc (wait_sig): Count number of iterations through 'more_signals' loop
and issue a warning if DEBUGGING and excessive. (WFSO): When debugging and infinite timeout, loop.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog6
-rw-r--r--winsup/cygwin/sigproc.cc150
2 files changed, 86 insertions, 70 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index fa3cfa235..101bff997 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,9 @@
+2003-08-27 Christopher Faylor <cgf@redhat.com>
+
+ * sigproc.cc (wait_sig): Count number of iterations through
+ 'more_signals' loop and issue a warning if DEBUGGING and excessive.
+ (WFSO): When debugging and infinite timeout, loop.
+
2003-08-26 Corinna Vinschen <corinna@vinschen.de>
* include/cygwin/stat.h: Allow definition of internal stat structures
diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc
index 7a2438335..5821a09e2 100644
--- a/winsup/cygwin/sigproc.cc
+++ b/winsup/cygwin/sigproc.cc
@@ -700,7 +700,7 @@ sig_send (_pinfo *p, int sig, DWORD ebp, bool exception)
todo = getlocal_sigtodo (sig);
}
}
- else if (thiscatch = getsem (p, "sigcatch", 0, 0))
+ else if ((thiscatch = getsem (p, "sigcatch", 0, 0)))
todo = p->getsigtodo (sig);
else
goto out; // Couldn't get the semaphore. getsem issued
@@ -1137,8 +1137,7 @@ wait_sig (VOID *self)
(void) SetThreadPriority (GetCurrentThread (), WAIT_SIG_PRIORITY);
/* sigproc_terminate sets sig_loop_wait to zero to indicate that
- * this thread should terminate.
- */
+ this thread should terminate. */
if (rc == WAIT_TIMEOUT)
{
if (!sig_loop_wait)
@@ -1163,76 +1162,86 @@ wait_sig (VOID *self)
todo = todos[1];
/* A sigcatch semaphore has been signaled. Scan the sigtodo
- * array looking for any unprocessed signals.
- */
+ array looking for any unprocessed signals. */
pending_signals = false;
- bool more_signals = false;
+ unsigned more_signals = 0;
bool saw_failed_interrupt = false;
do
- for (int sig = -__SIGOFFSET, more_signals = false; sig < NSIG; sig++)
- {
- LONG x = InterlockedDecrement (todo + sig);
- if (x < 0)
- InterlockedIncrement (todo + sig);
- else if (x >= 0)
- {
- if (sig > 0 && sig != SIGKILL && sig != SIGSTOP &&
- (sigismember (&myself->getsigmask (), sig) ||
- main_vfork->pid ||
- (sig != SIGCONT && ISSTATE (myself, PID_STOPPED))))
- {
- sigproc_printf ("signal %d blocked", sig);
- pending_signals = true; // FIXME: This will cause unnecessary sig_dispatch_pending spins
- InterlockedIncrement (myself->getsigtodo (sig));
- }
- else
- {
- /* Found a signal to process */
- if (rc != RC_NOSYNC)
- pending_signals = true; // There should be an armed semaphore, in this case
-
- sigproc_printf ("processing signal %d", sig);
- switch (sig)
- {
- case __SIGFLUSH:
- if (rc == RC_MAIN)
- {
- flush = true;
- ReleaseSemaphore (sigcatch_nosync, 1, NULL);
- goto out1;
- }
- break;
-
- /* Internal signal to turn on stracing. */
- case __SIGSTRACE:
- strace.hello ();
- break;
-
- case __SIGCOMMUNE:
- talktome ();
- break;
-
- /* A normal UNIX signal */
- default:
- sigproc_printf ("Got signal %d", sig);
- if (!sig_handle (sig))
- {
- pending_signals = saw_failed_interrupt = true;
- sigproc_printf ("couldn't send signal %d", sig);
- InterlockedIncrement (myself->getsigtodo (sig));
- }
- }
- if (rc == RC_NOSYNC)
- more_signals = x > 0;
- }
-
- if (sig == SIGCHLD)
- proc_subproc (PROC_CLEARWAIT, 0);
- if (saw_failed_interrupt || rc != RC_NOSYNC)
- goto out;
- }
- }
- while (more_signals);
+ {
+ more_signals = 0;
+ for (int sig = -__SIGOFFSET; sig < NSIG; sig++)
+ {
+ LONG x = InterlockedDecrement (todo + sig);
+ if (x < 0)
+ InterlockedIncrement (todo + sig);
+ else if (x >= 0)
+ {
+ /* If x > 0, we have to deal with a signal at some later point */
+ if (rc != RC_NOSYNC && x > 0)
+ pending_signals = true; // There should be an armed semaphore, in this case
+
+ if (sig > 0 && sig != SIGKILL && sig != SIGSTOP &&
+ (sigismember (&myself->getsigmask (), sig) ||
+ main_vfork->pid ||
+ (sig != SIGCONT && ISSTATE (myself, PID_STOPPED))))
+ {
+ sigproc_printf ("signal %d blocked", sig);
+ x = InterlockedIncrement (myself->getsigtodo (sig));
+ pending_signals = true;
+ }
+ else
+ {
+ sigproc_printf ("processing signal %d", sig);
+ switch (sig)
+ {
+ case __SIGFLUSH:
+ if (rc == RC_MAIN)
+ {
+ flush = true;
+ ReleaseSemaphore (sigcatch_nosync, 1, NULL);
+ goto out1;
+ }
+ break;
+
+ /* Internal signal to turn on stracing. */
+ case __SIGSTRACE:
+ strace.hello ();
+ break;
+
+ case __SIGCOMMUNE:
+ talktome ();
+ break;
+
+ /* A normal UNIX signal */
+ default:
+ sigproc_printf ("Got signal %d", sig);
+ if (!sig_handle (sig))
+ {
+ saw_failed_interrupt = true;
+ sigproc_printf ("couldn't send signal %d", sig);
+ x = InterlockedIncrement (myself->getsigtodo (sig));
+ pending_signals = true;
+ }
+ }
+ if (rc == RC_NOSYNC && x > 0)
+ more_signals++;
+ }
+
+ if (sig == SIGCHLD)
+ proc_subproc (PROC_CLEARWAIT, 0);
+
+ /* Need to take special action if an interrupt failed due to main thread not
+ getting around to calling handler yet. */
+ if (saw_failed_interrupt || rc != RC_NOSYNC)
+ goto out;
+ }
+ }
+#ifdef DEBUGGING
+ if (more_signals > 100)
+ system_printf ("hmm. infinite loop? more_signals %u\n", more_signals);
+#endif
+ }
+ while (more_signals && sig_loop_wait);
out:
/* Signal completion of signal handling depending on which semaphore
@@ -1245,6 +1254,7 @@ wait_sig (VOID *self)
sigproc_printf ("set main thread completion event");
flush = false;
}
+
out1:
if (saw_failed_interrupt)
{