summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2001-07-24 04:59:07 +0000
committerRoland McGrath <roland@gnu.org>2001-07-24 04:59:07 +0000
commit760b7056239a51e7fa1cbbd99b293c4366f64a1a (patch)
tree1ff9dd1cc234dc2e26ee91c637767e7b24ca90e6 /hurd
parentbeafb7521f1ce231fa3ac799cdedd361b3469886 (diff)
2001-07-24 Igor Khavkine <i_khavki@alcor.concordia.ca>
* hurd/hurdsig.c (_hurdsig_init): Fix incorrect initialization of pending signals.
Diffstat (limited to 'hurd')
-rw-r--r--hurd/hurdsig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c
index 8471df27d7..d95958a323 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;