* linux-nat.c (linux_nat_wait): Do not short-cut reporting

of 'uninteresting' signals when single-stepping.
This commit is contained in:
Ulrich Weigand 2006-05-05 23:46:58 +00:00
parent c324242868
commit d539ed7ecd
2 changed files with 9 additions and 1 deletions

View file

@ -2155,7 +2155,10 @@ retry:
{
int signo = target_signal_from_host (WSTOPSIG (status));
if (signal_stop_state (signo) == 0
/* If we get a signal while single-stepping, we may need special
care, e.g. to skip the signal handler. Defer to common code. */
if (!lp->step
&& signal_stop_state (signo) == 0
&& signal_print_state (signo) == 0
&& signal_pass_state (signo) == 1)
{