aboutsummaryrefslogtreecommitdiff
path: root/nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-07-08 21:08:13 +0000
committerUlrich Drepper <drepper@redhat.com>2003-07-08 21:08:13 +0000
commitda0c02eee173701ed0a055adda040ec596812045 (patch)
treeab1e44c4ae295c15c500810bf5b0a4fa7a6fad1b /nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S
parent57a5ea0215f9b7d6198927af695843aaffcd45a2 (diff)
downloadglibc-da0c02eee173701ed0a055adda040ec596812045.tar
glibc-da0c02eee173701ed0a055adda040ec596812045.tar.gz
glibc-da0c02eee173701ed0a055adda040ec596812045.tar.bz2
glibc-da0c02eee173701ed0a055adda040ec596812045.zip
Update.
2003-07-08 Jakub Jelinek <jakub@redhat.com> * pthreadP.h (__pthread_unwind_next, __pthread_register_cancel, __pthread_unregister_cancel): Add prototypes and hidden_proto. * unwind.c (__pthread_unwind_next): Add hidden_def. * cleanup.c (__pthread_register_cancel, __pthread_unregister_cancel): Likewise. * sysdeps/unix/sysv/linux/i386/i486/sem_wait.S (__new_sem_wait): Use HIDDEN_JUMPTARGET to jump to __pthread_unwind. * sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S (sem_timedwait): Likewise. * sysdeps/unix/sysv/linux/x86_64/sem_wait.S (sem_wait): Likewise. * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S (sem_timedwait): Likewise. * sysdeps/unix/sysv/linux/i386/pthread_once.S (__pthread_once): Use HIDDEN_JUMPTARGET to call __pthread_register_cancel, __pthread_unregister_cancel and __pthread_unwind_next.
Diffstat (limited to 'nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S')
-rw-r--r--nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S b/nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S
index 3bab92f990..107a9a919e 100644
--- a/nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S
+++ b/nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S
@@ -112,14 +112,14 @@ __pthread_once:
jne 7f
leal 8(%esp), %eax
- call __pthread_register_cancel
+ call HIDDEN_JUMPTARGET(__pthread_register_cancel)
/* Call the user-provided initialization function. */
call *24+UNWINDBUFSIZE(%esp)
/* Pop the cleanup handler. */
leal 8(%esp), %eax
- call __pthread_unregister_cancel
+ call HIDDEN_JUMPTARGET(__pthread_unregister_cancel)
addl $UNWINDBUFSIZE+8, %esp
cfi_adjust_cfa_offset (-UNWINDBUFSIZE-8)
@@ -156,7 +156,7 @@ __pthread_once:
ENTER_KERNEL
leal 8(%esp), %eax
- call __pthread_unwind_next /* Note: no @PLT. */
+ call HIDDEN_JUMPTARGET (__pthread_unwind_next)
/* NOTREACHED */
hlt
cfi_endproc