]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update
authorUlrich Drepper <drepper@redhat.com>
Wed, 18 Dec 2002 23:29:41 +0000 (23:29 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 18 Dec 2002 23:29:41 +0000 (23:29 +0000)
2002-12-18  Jakub Jelinek  <jakub@redhat.com>

* sysdeps/pthread/flockfile.c (flockfile): Change into weak alias.
* sysdeps/unix/sysv/linux/raise.c (gsignal): Add weak alias to raise.
* Versions [libc: GLIBC_2.0]: Add pthread_attr_init.
[libpthread: GLIBC_2.1]: Remove __pthread_rwlock_init,
__pthread_rwlock_destroy, __pthread_rwlock_rdlock,
__pthread_rwlock_wrlock, __pthread_rwlock_unlock,
__pthread_rwlock_tryrdlock and __pthread_rwlock_trywrlock.

linuxthreads/sysdeps/pthread/flockfile.c
nptl/ChangeLog
nptl/Versions
nptl/sysdeps/pthread/flockfile.c
nptl/sysdeps/unix/sysv/linux/raise.c

index a90215cc1fc042b30692e47143fd4bcafefe6e39..918cb84f61987830486d8ce0c27ec52b43821386 100644 (file)
@@ -30,4 +30,4 @@ __flockfile (stream)
   _IO_lock_lock (*stream->_lock);
 }
 strong_alias (__flockfile, _IO_flockfile)
-strong_alias (__flockfile, flockfile)
+weak_alias (__flockfile, flockfile)
index 33567460ecd291a6cdc7d8df36eaaac547c02de6..c746ce985a00dbf095094349c20eca1725c384f1 100644 (file)
@@ -1,3 +1,13 @@
+2002-12-18  Jakub Jelinek  <jakub@redhat.com>
+
+       * sysdeps/pthread/flockfile.c (flockfile): Change into weak alias.
+       * sysdeps/unix/sysv/linux/raise.c (gsignal): Add weak alias to raise.
+       * Versions [libc: GLIBC_2.0]: Add pthread_attr_init.
+       [libpthread: GLIBC_2.1]: Remove __pthread_rwlock_init,
+       __pthread_rwlock_destroy, __pthread_rwlock_rdlock,
+       __pthread_rwlock_wrlock, __pthread_rwlock_unlock,
+       __pthread_rwlock_tryrdlock and __pthread_rwlock_trywrlock.
+
 2002-12-18  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Use ENTER_KERNEL
index 488ea2ebe7f1e1062f49b9274463979f43ff952c..b9de74afd97f402472af0da75f196d8866212b71 100644 (file)
@@ -1,6 +1,6 @@
 libc {
   GLIBC_2.0 {
-    pthread_attr_destroy;
+    pthread_attr_destroy; pthread_attr_init;
     pthread_attr_getdetachstate; pthread_attr_setdetachstate;
     pthread_attr_getinheritsched; pthread_attr_setinheritsched;
     pthread_attr_getschedparam; pthread_attr_setschedparam;
@@ -116,10 +116,6 @@ libpthread {
     pthread_rwlock_rdlock; pthread_rwlock_wrlock; pthread_rwlock_unlock;
     pthread_rwlock_tryrdlock; pthread_rwlock_trywrlock;
 
-    __pthread_rwlock_init; __pthread_rwlock_destroy;
-    __pthread_rwlock_rdlock; __pthread_rwlock_wrlock; __pthread_rwlock_unlock;
-    __pthread_rwlock_tryrdlock; __pthread_rwlock_trywrlock;
-
     pthread_rwlockattr_init; pthread_rwlockattr_destroy;
     pthread_rwlockattr_getpshared; pthread_rwlockattr_setpshared;
     pthread_rwlockattr_getkind_np; pthread_rwlockattr_setkind_np;
index a90215cc1fc042b30692e47143fd4bcafefe6e39..918cb84f61987830486d8ce0c27ec52b43821386 100644 (file)
@@ -30,4 +30,4 @@ __flockfile (stream)
   _IO_lock_lock (*stream->_lock);
 }
 strong_alias (__flockfile, _IO_flockfile)
-strong_alias (__flockfile, flockfile)
+weak_alias (__flockfile, flockfile)
index deb0fb3c17ea2e80b5da7c9192886dcdf8b7a15d..e152ba9055c4664e93e8440bc6a56e6e4f6cbf95 100644 (file)
@@ -43,3 +43,4 @@ raise (sig)
   return INLINE_SYSCALL (tkill, 2, selftid, sig);
 }
 libc_hidden_def (raise)
+weak_alias (raise, gsignal)