mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 10:50:07 +00:00
Update.
* signal/sighold.c (sighold): Use sigaddset and not __sigaddset. The signal number must be checked [PR libc/5004].
This commit is contained in:
parent
c9df3df9d2
commit
89e28f65b3
@ -1,5 +1,8 @@
|
||||
2003-04-17 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* signal/sighold.c (sighold): Use sigaddset and not __sigaddset.
|
||||
The signal number must be checked [PR libc/5004].
|
||||
|
||||
* sysdeps/unix/sysv/linux/system.c: If compiled without threads
|
||||
don't do anything fancy.
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Add SIG to the calling process' signal mask.
|
||||
Copyright (C) 1998, 2000 Free Software Foundation, Inc.
|
||||
Copyright (C) 1998, 2000, 2003 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
|
||||
|
||||
@ -33,7 +33,7 @@ sighold (sig)
|
||||
return -1;
|
||||
|
||||
/* Add the specified signal. */
|
||||
if (__sigaddset (&set, sig) < 0)
|
||||
if (sigaddset (&set, sig) < 0)
|
||||
return -1;
|
||||
|
||||
/* Set the new mask. */
|
||||
|
Loading…
Reference in New Issue
Block a user