aboutsummaryrefslogtreecommitdiff
path: root/nptl
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-02-16 22:55:36 +0000
committerUlrich Drepper <drepper@redhat.com>2004-02-16 22:55:36 +0000
commitcd9fdc72adf065702046aa63af8b569e023cdf88 (patch)
tree8f8a535c239a4e4c88b7e18dafdb655daef1a55c /nptl
parent06877a37ad2aba96442d1e605a171bed39dc02d4 (diff)
downloadglibc-cd9fdc72adf065702046aa63af8b569e023cdf88.tar
glibc-cd9fdc72adf065702046aa63af8b569e023cdf88.tar.gz
glibc-cd9fdc72adf065702046aa63af8b569e023cdf88.tar.bz2
glibc-cd9fdc72adf065702046aa63af8b569e023cdf88.zip
Update.
2004-02-16 Steven Munroe <sjmunroe@us.ibm.com> * sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: Replace libc with libpthread as "lib" parameter to SHLIB_COMPAT. (__novmx_siglongjmp): Fix typo in function name. (__novmx_longjmp): Fix typo in function name.
Diffstat (limited to 'nptl')
-rw-r--r--nptl/ChangeLog7
-rw-r--r--nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c6
2 files changed, 10 insertions, 3 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog
index b610b7f327..677e334a7e 100644
--- a/nptl/ChangeLog
+++ b/nptl/ChangeLog
@@ -1,3 +1,10 @@
+2004-02-16 Steven Munroe <sjmunroe@us.ibm.com>
+
+ * sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: Replace libc with
+ libpthread as "lib" parameter to SHLIB_COMPAT.
+ (__novmx_siglongjmp): Fix typo in function name.
+ (__novmx_longjmp): Fix typo in function name.
+
2004-02-13 Ulrich Drepper <drepper@redhat.com>
* sysdeps/pthread/pthread_cond_wait.c (__pthread_cond_wait): Add a
diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c b/nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c
index eac52905db..3c795e37e1 100644
--- a/nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c
+++ b/nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c
@@ -22,7 +22,7 @@
#include <bits/wordsize.h>
#include "pthreadP.h"
#include <shlib-compat.h>
-#if defined SHARED && SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_3_4)
+#if defined SHARED && SHLIB_COMPAT (libpthread, GLIBC_2_0, GLIBC_2_3_4)
/* These functions are not declared anywhere since they shouldn't be
used at another place but here. */
@@ -32,12 +32,12 @@ extern void __novmx__libc_longjmp (sigjmp_buf env, int val)
__attribute__ ((noreturn));
-void __novmxsiglongjmp (sigjmp_buf env, int val)
+void __novmx_siglongjmp (sigjmp_buf env, int val)
{
__novmx__libc_siglongjmp (env, val);
}
-void __novmxlongjmp (jmp_buf env, int val)
+void __novmx_longjmp (jmp_buf env, int val)
{
__novmx__libc_longjmp (env, val);
}