diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-04-01 19:36:34 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-04-01 19:36:34 +0000 |
commit | d980f41a7eb9bc0f887cb15369b43e57b9a77b56 (patch) | |
tree | d296c5bacfa9a4d94c3dce04550af7b3ee9d948e /sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S | |
parent | 8f23eb7abe7bb6a73c69f6a8342fbfd526a1843a (diff) | |
download | glibc-d980f41a7eb9bc0f887cb15369b43e57b9a77b56.tar glibc-d980f41a7eb9bc0f887cb15369b43e57b9a77b56.tar.gz glibc-d980f41a7eb9bc0f887cb15369b43e57b9a77b56.tar.bz2 glibc-d980f41a7eb9bc0f887cb15369b43e57b9a77b56.zip |
Update.
* 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.
Diffstat (limited to 'sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S')
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S | 4 |
1 files changed, 2 insertions, 2 deletions
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) |