aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/x86_64/clone.S
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-08-04 01:28:11 +0000
committerRoland McGrath <roland@gnu.org>2002-08-04 01:28:11 +0000
commitb38de2c8da34cf506651a5170a3d2d46292650ad (patch)
tree63d48f1ee665cbf6a044d7d630dfc286555f1689 /sysdeps/unix/sysv/linux/x86_64/clone.S
parentb28d7a3dfdff6b94839d628ff8acd3a28aa2ff7a (diff)
downloadglibc-b38de2c8da34cf506651a5170a3d2d46292650ad.tar
glibc-b38de2c8da34cf506651a5170a3d2d46292650ad.tar.gz
glibc-b38de2c8da34cf506651a5170a3d2d46292650ad.tar.bz2
glibc-b38de2c8da34cf506651a5170a3d2d46292650ad.zip
2002-08-03 Roland McGrath <roland@redhat.com>
* sysdeps/unix/sysv/linux/x86_64/clone.S (thread_start): Use HIDDEN_JUMPTARGET for _exit. * sysdeps/unix/sysv/linux/m68k/clone.S (thread_start): Likewise. * sysdeps/unix/sysv/linux/i386/clone.S (thread_start): Likewise. * sysdeps/unix/sysv/linux/powerpc/clone.S: Likewise. * sysdeps/unix/_exit.S (_exit): Add libc_hidden_def.
Diffstat (limited to 'sysdeps/unix/sysv/linux/x86_64/clone.S')
-rw-r--r--sysdeps/unix/sysv/linux/x86_64/clone.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/x86_64/clone.S b/sysdeps/unix/sysv/linux/x86_64/clone.S
index a2c2c9a3f0..5b3520754d 100644
--- a/sysdeps/unix/sysv/linux/x86_64/clone.S
+++ b/sysdeps/unix/sysv/linux/x86_64/clone.S
@@ -1,4 +1,4 @@
-/* Copyright (C) 2001 Free Software Foundation, Inc.
+/* Copyright (C) 2001,02 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -79,7 +79,7 @@ thread_start:
call *%rax
/* Call exit with return value from function call. */
movq %rax, %rdi
- call JUMPTARGET (_exit)
+ call HIDDEN_JUMPTARGET (_exit)
PSEUDO_END (BP_SYM (__clone))