2001-07-24 Igor Khavkine <i_khavki@alcor.concordia.ca>

* hurd/hurdsig.c (_hurdsig_init): Fix incorrect initialization
        of pending signals.
This commit is contained in:
Roland McGrath 2001-07-24 04:59:07 +00:00
parent beafb7521f
commit 760b705623

View File

@ -1229,7 +1229,7 @@ _hurdsig_init (const int *intarray, size_t intarraysize)
if (intarraysize > INIT_SIGMASK) if (intarraysize > INIT_SIGMASK)
ss->blocked = intarray[INIT_SIGMASK]; ss->blocked = intarray[INIT_SIGMASK];
if (intarraysize > INIT_SIGPENDING) if (intarraysize > INIT_SIGPENDING)
ss->blocked = intarray[INIT_SIGPENDING]; ss->pending = intarray[INIT_SIGPENDING];
if (intarraysize > INIT_SIGIGN && intarray[INIT_SIGIGN] != 0) if (intarraysize > INIT_SIGIGN && intarray[INIT_SIGIGN] != 0)
{ {
int signo; int signo;