mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
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:
parent
beafb7521f
commit
760b705623
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user