aboutsummaryrefslogtreecommitdiff
path: root/nptl/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-12-18 23:29:41 +0000
committerUlrich Drepper <drepper@redhat.com>2002-12-18 23:29:41 +0000
commit3d53957913ab331dbdecaa2587d9aafd07d88eac (patch)
tree89fc508bd8c0dfcb87a221a15ec837685322dac6 /nptl/sysdeps
parent99326cd47fc57a33dfdf6b8b12357a9d9c192549 (diff)
downloadglibc-3d53957913ab331dbdecaa2587d9aafd07d88eac.tar
glibc-3d53957913ab331dbdecaa2587d9aafd07d88eac.tar.gz
glibc-3d53957913ab331dbdecaa2587d9aafd07d88eac.tar.bz2
glibc-3d53957913ab331dbdecaa2587d9aafd07d88eac.zip
Update
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.
Diffstat (limited to 'nptl/sysdeps')
-rw-r--r--nptl/sysdeps/pthread/flockfile.c2
-rw-r--r--nptl/sysdeps/unix/sysv/linux/raise.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/nptl/sysdeps/pthread/flockfile.c b/nptl/sysdeps/pthread/flockfile.c
index a90215cc1f..918cb84f61 100644
--- a/nptl/sysdeps/pthread/flockfile.c
+++ b/nptl/sysdeps/pthread/flockfile.c
@@ -30,4 +30,4 @@ __flockfile (stream)
_IO_lock_lock (*stream->_lock);
}
strong_alias (__flockfile, _IO_flockfile)
-strong_alias (__flockfile, flockfile)
+weak_alias (__flockfile, flockfile)
diff --git a/nptl/sysdeps/unix/sysv/linux/raise.c b/nptl/sysdeps/unix/sysv/linux/raise.c
index deb0fb3c17..e152ba9055 100644
--- a/nptl/sysdeps/unix/sysv/linux/raise.c
+++ b/nptl/sysdeps/unix/sysv/linux/raise.c
@@ -43,3 +43,4 @@ raise (sig)
return INLINE_SYSCALL (tkill, 2, selftid, sig);
}
libc_hidden_def (raise)
+weak_alias (raise, gsignal)