diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-04 01:28:09 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-04 01:28:09 +0000 |
commit | 237b9f1c7bb44c02712745c02b8b982be442311e (patch) | |
tree | 90b8e221d5d1ca9d414a837596adcbbf9e7b2f03 | |
parent | e5d48d74e6e0ef2dd71fdb5b72b2eb58f90698aa (diff) | |
download | glibc-237b9f1c7bb44c02712745c02b8b982be442311e.tar glibc-237b9f1c7bb44c02712745c02b8b982be442311e.tar.gz glibc-237b9f1c7bb44c02712745c02b8b982be442311e.tar.bz2 glibc-237b9f1c7bb44c02712745c02b8b982be442311e.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.
-rw-r--r-- | sysdeps/unix/sysv/linux/m68k/clone.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/m68k/clone.S b/sysdeps/unix/sysv/linux/m68k/clone.S index 9ca789d4a4..e19172a8f7 100644 --- a/sysdeps/unix/sysv/linux/m68k/clone.S +++ b/sysdeps/unix/sysv/linux/m68k/clone.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1996,97,98,2002 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab (schwab@issan.informatik.uni-dortmund.de) @@ -58,7 +58,7 @@ thread_start: subl %fp, %fp /* terminate the stack frame */ jsr (%a0) movel %d0, -(%sp) - jbsr JUMPTARGET (_exit) + jbsr HIDDEN_JUMPTARGET (_exit) PSEUDO_END (__clone) |