From cd9fdc72adf065702046aa63af8b569e023cdf88 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 16 Feb 2004 22:55:36 +0000 Subject: Update. 2004-02-16 Steven Munroe * 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. --- nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c') 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 #include "pthreadP.h" #include -#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); } -- cgit 1.4.1