about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S4
-rw-r--r--sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S4
-rw-r--r--sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S4
4 files changed, 11 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index f5ededceb4..bb8d945e9f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2004-04-01  Ulrich Drepper  <drepper@redhat.com>
 
+	* sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S: Use
+	__sigprocmask not sigprocmask.
+	* sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S: Likewise.
+	* sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Likewise.
+
 	* elf/elf.h: Define more ppc64 specific dynamic tags.
 
 2004-04-01  Jakub Jelinek  <jakub@redhat.com>
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S b/sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
index 13f2039766..6a0e1e559a 100644
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
@@ -133,7 +133,7 @@ ENTRY(__novec_getcontext)
   addi  r5,r3,UCONTEXT_SIGMASK
   li  r4,0
   li  r3,SIG_BLOCK
-  bl  JUMPTARGET(sigprocmask)
+  bl  JUMPTARGET(__sigprocmask)
   nop
 #else
   /* If the kernel is not at least 2.4.21 then generate a ENOSYS stub.  */
@@ -382,7 +382,7 @@ L(has_no_vec):
   addi  r5,r3,UCONTEXT_SIGMASK
   li  r4,0
   li  r3,SIG_BLOCK
-  bl  JUMPTARGET(sigprocmask)
+  bl  JUMPTARGET(__sigprocmask)
   nop
 #else
   /* If the kernel is not at least 2.4.21 then generate a ENOSYS stub.  */
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S b/sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
index 1ff9448764..b2675f0928 100644
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
@@ -53,7 +53,7 @@ ENTRY(__novec_setcontext)
   li    r5,0
   addi  r4,r3,UCONTEXT_SIGMASK
   li    r3,SIG_SETMASK
-  bl    JUMPTARGET(sigprocmask)
+  bl    JUMPTARGET(__sigprocmask)
   nop
   cmpdi r3,0
   bne   L(nv_error_exit)
@@ -217,7 +217,7 @@ ENTRY(__setcontext)
   li    r5,0
   addi  r4,r3,UCONTEXT_SIGMASK
   li    r3,SIG_SETMASK
-  bl    JUMPTARGET(sigprocmask)
+  bl    JUMPTARGET(__sigprocmask)
   nop
   cmpdi r3,0
   bne   L(error_exit)
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S b/sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
index 64f29829e6..660493984d 100644
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
@@ -134,7 +134,7 @@ ENTRY(__novec_swapcontext)
   addi  r5,r3,UCONTEXT_SIGMASK
   addi  r4,r4,UCONTEXT_SIGMASK
   li    r3,SIG_SETMASK
-  bl    JUMPTARGET(sigprocmask)
+  bl    JUMPTARGET(__sigprocmask)
   nop
   cmpdi  r3,0
   bne   L(nv_error_exit)
@@ -506,7 +506,7 @@ L(has_no_vec):
   addi  r5,r3,UCONTEXT_SIGMASK
   addi  r4,r4,UCONTEXT_SIGMASK
   li    r3,SIG_SETMASK
-  bl    JUMPTARGET(sigprocmask)
+  bl    JUMPTARGET(__sigprocmask)
   nop
   cmpdi  r3,0
   bne   L(error_exit)