Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 11 Dec 2002 00:55:49 +0000 (00:55 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 11 Dec 2002 00:55:49 +0000 (00:55 +0000)
* sysdeps/generic/sigpause.c: Define all functions as weak.
* sysdeps/posix/sigpause.c: Likewise.

ChangeLog
nptl/ChangeLog
sysdeps/generic/sigpause.c
sysdeps/posix/sigpause.c

index 9676832..dccdad8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
 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
        type size_t.
index a28e63a..6dea293 100644 (file)
@@ -1,5 +1,8 @@
 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.
 
 2002-12-09  Ulrich Drepper  <drepper@redhat.com>
index 3906dbd..8f63b87 100644 (file)
@@ -31,6 +31,7 @@ stub_warning (__sigpause)
 libc_hidden_def (__sigpause)
 
 int
+__attribute__ ((weak))
 __default_sigpause (int mask)
 {
   __set_errno (ENOSYS);
@@ -42,7 +43,8 @@ stub_warning (sigpause)
 
 
 int
-__xpg_sigpause (int sig)
+__attribute ((weak))
+__xpg___sigpause (int sig)
 {
   __set_errno (ENOSYS);
   return -1;
index f764cba..dba6912 100644 (file)
@@ -48,6 +48,7 @@ libc_hidden_def (__sigpause)
    standards demand it.  The version which is a bit more reasonable is
    the BSD version.  So make this the default.  */
 int
+__attribute__ ((weak))
 __default_sigpause (int mask)
 {
   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
    the BSD version.  So make this the default.  */
 int
+__attribute__ ((weak))
 __xpg_sigpause (int sig)
 {
   return __sigpause (sig, 1);