* signal.cc (sigaction): Fix if-statement typo.
This commit is contained in:
parent
be14b608aa
commit
0a0c89ef54
|
@ -1,3 +1,7 @@
|
||||||
|
2004-01-21 Nicholas Wourms <nwourms@netscape.net>
|
||||||
|
|
||||||
|
* signal.cc (sigaction): Fix if-statement typo.
|
||||||
|
|
||||||
2004-01-21 Christopher Faylor <cgf@redhat.com>
|
2004-01-21 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
* cygtls.cc (handle_threadlist_exception): Change logic, improve
|
* cygtls.cc (handle_threadlist_exception): Change logic, improve
|
||||||
|
|
|
@ -376,7 +376,7 @@ sigaction (int sig, const struct sigaction *newact, struct sigaction *oldact)
|
||||||
if (sig == SIGCHLD)
|
if (sig == SIGCHLD)
|
||||||
{
|
{
|
||||||
myself->process_state &= ~PID_NOCLDSTOP;
|
myself->process_state &= ~PID_NOCLDSTOP;
|
||||||
if (newact->sa_flags & SA_NOCLDSTOP);
|
if (newact->sa_flags & SA_NOCLDSTOP)
|
||||||
myself->process_state |= PID_NOCLDSTOP;
|
myself->process_state |= PID_NOCLDSTOP;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue