mirror of git://sourceware.org/git/glibc.git
Update.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S [SHARED]: Use __GI__exit.
This commit is contained in:
parent
3c55cffa1e
commit
7062ca8f6c
|
@ -1,5 +1,8 @@
|
||||||
2004-04-01 Ulrich Drepper <drepper@redhat.com>
|
2004-04-01 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S [SHARED]: Use
|
||||||
|
__GI__exit.
|
||||||
|
|
||||||
* sysdeps/powerpc/fpu/bits/mathinline.h: Addn __signbitf and
|
* sysdeps/powerpc/fpu/bits/mathinline.h: Addn __signbitf and
|
||||||
__signbit inlines.
|
__signbit inlines.
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* Wrapper around clone system call. PowerPC64 version.
|
/* Wrapper around clone system call. PowerPC64 version.
|
||||||
Copyright (C) 1997,98,99,2000,02 Free Software Foundation, Inc.
|
Copyright (C) 1997,98,99,2000,02, 2004 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
@ -87,7 +87,11 @@ ENTRY (BP_SYM (__clone))
|
||||||
mr r3,r31
|
mr r3,r31
|
||||||
bctrl
|
bctrl
|
||||||
/* Call _exit with result from procedure. */
|
/* Call _exit with result from procedure. */
|
||||||
|
#ifdef SHARED
|
||||||
|
b JUMPTARGET(__GI__exit)
|
||||||
|
#else
|
||||||
b JUMPTARGET(_exit)
|
b JUMPTARGET(_exit)
|
||||||
|
#endif
|
||||||
|
|
||||||
L(parent):
|
L(parent):
|
||||||
/* Parent. Restore registers & return. */
|
/* Parent. Restore registers & return. */
|
||||||
|
|
Loading…
Reference in New Issue