mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Update.
* sysdeps/generic/sigpause.c: Define all functions as weak. * sysdeps/posix/sigpause.c: Likewise.
This commit is contained in:
@ -1,6 +1,7 @@
|
|||||||
2002-12-10 Ulrich Drepper <drepper@redhat.com>
|
2002-12-10 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* sysdeps/posix/sigpause.c: Define all functions as weak.
|
* sysdeps/generic/sigpause.c: Define all functions as weak.
|
||||||
|
* sysdeps/posix/sigpause.c: Likewise.
|
||||||
|
|
||||||
* elf/tst-tls7.c (do_test): Adjustments for l_tls_modid being of
|
* elf/tst-tls7.c (do_test): Adjustments for l_tls_modid being of
|
||||||
type size_t.
|
type size_t.
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
2002-12-10 Ulrich Drepper <drepper@redhat.com>
|
2002-12-10 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* init.c (__pthread_initialize_minimal): Remove unneccesary
|
||||||
|
sigaddset call.
|
||||||
|
|
||||||
* Makefile (tests): We can run tst-locale2 now.
|
* Makefile (tests): We can run tst-locale2 now.
|
||||||
|
|
||||||
2002-12-09 Ulrich Drepper <drepper@redhat.com>
|
2002-12-09 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
@ -31,6 +31,7 @@ stub_warning (__sigpause)
|
|||||||
libc_hidden_def (__sigpause)
|
libc_hidden_def (__sigpause)
|
||||||
|
|
||||||
int
|
int
|
||||||
|
__attribute__ ((weak))
|
||||||
__default_sigpause (int mask)
|
__default_sigpause (int mask)
|
||||||
{
|
{
|
||||||
__set_errno (ENOSYS);
|
__set_errno (ENOSYS);
|
||||||
@ -42,7 +43,8 @@ stub_warning (sigpause)
|
|||||||
|
|
||||||
|
|
||||||
int
|
int
|
||||||
__xpg_sigpause (int sig)
|
__attribute ((weak))
|
||||||
|
__xpg___sigpause (int sig)
|
||||||
{
|
{
|
||||||
__set_errno (ENOSYS);
|
__set_errno (ENOSYS);
|
||||||
return -1;
|
return -1;
|
||||||
|
@ -48,6 +48,7 @@ libc_hidden_def (__sigpause)
|
|||||||
standards demand it. The version which is a bit more reasonable is
|
standards demand it. The version which is a bit more reasonable is
|
||||||
the BSD version. So make this the default. */
|
the BSD version. So make this the default. */
|
||||||
int
|
int
|
||||||
|
__attribute__ ((weak))
|
||||||
__default_sigpause (int mask)
|
__default_sigpause (int mask)
|
||||||
{
|
{
|
||||||
return __sigpause (mask, 0);
|
return __sigpause (mask, 0);
|
||||||
@ -61,6 +62,7 @@ strong_alias (__default_sigpause, __libc_sigpause)
|
|||||||
standards demand it. The version which is a bit more reasonable is
|
standards demand it. The version which is a bit more reasonable is
|
||||||
the BSD version. So make this the default. */
|
the BSD version. So make this the default. */
|
||||||
int
|
int
|
||||||
|
__attribute__ ((weak))
|
||||||
__xpg_sigpause (int sig)
|
__xpg_sigpause (int sig)
|
||||||
{
|
{
|
||||||
return __sigpause (sig, 1);
|
return __sigpause (sig, 1);
|
||||||
|
Reference in New Issue
Block a user