summaryrefslogtreecommitdiff
path: root/hurd/hurdsig.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2019-02-21 22:02:11 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2019-02-21 22:02:11 +0100
commitbacd4ddf7e896731dd6397f497cbb93ffc9b627f (patch)
tree0548458f8be8211c53c03a052539187f621f111b /hurd/hurdsig.c
parent3611e70524a330d1d177259812e5f9f5c609158a (diff)
parent2a9e1c4028bb335642e2b6620f42594f241ce0fb (diff)
Merge branch 't/hurdsig-fixes-2' into refs/top-bases/t/libpthread_sigs
Diffstat (limited to 'hurd/hurdsig.c')
-rw-r--r--hurd/hurdsig.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c
index 3ada31483e..81e4425534 100644
--- a/hurd/hurdsig.c
+++ b/hurd/hurdsig.c
@@ -868,9 +868,7 @@ post_signal (struct hurd_sigstate *ss,
}
/* Handle receipt of a blocked signal, or any signal while stopped. */
- if (act != ignore && /* Signals ignored now are forgotten now. */
- __sigismember (&blocked, signo) ||
- (signo != SIGKILL && _hurd_stopped))
+ if (__sigismember (&blocked, signo) || (signo != SIGKILL && _hurd_stopped))
{
mark_pending ();
act = ignore;