From 760b7056239a51e7fa1cbbd99b293c4366f64a1a Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 24 Jul 2001 04:59:07 +0000 Subject: 2001-07-24 Igor Khavkine * hurd/hurdsig.c (_hurdsig_init): Fix incorrect initialization of pending signals. --- hurd/hurdsig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hurd/hurdsig.c') diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c index 8471df2..d95958a 100644 --- a/hurd/hurdsig.c +++ b/hurd/hurdsig.c @@ -1229,7 +1229,7 @@ _hurdsig_init (const int *intarray, size_t intarraysize) if (intarraysize > INIT_SIGMASK) ss->blocked = intarray[INIT_SIGMASK]; if (intarraysize > INIT_SIGPENDING) - ss->blocked = intarray[INIT_SIGPENDING]; + ss->pending = intarray[INIT_SIGPENDING]; if (intarraysize > INIT_SIGIGN && intarray[INIT_SIGIGN] != 0) { int signo; -- cgit v1.1