This is the mail archive of the libc-hacker@sourceware.org mailing list for the glibc project.
Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
On Tue, Dec 20, 2005 at 04:05:40PM -0600, Steven Munroe wrote:
> Jakub got to the powerpc change before I could finish testing my
> version. No problem with Jukub's quickness, but I notice that his
> version does not fill in the
>
> "#if defined NOT_IN_libc && defined IS_IN_rtld"
>
>
> case. While the X86_64 example does.
Uli did that part already earlier for
sysdeps/powerpc/powerpc32/setjmp-common.S:
#if defined NOT_IN_libc && defined IS_IN_rtld
li r3,0
blr
#else
b BP_SYM (__sigjmp_save@local)
#endif
as well as sysdeps/powerpc/powerpc64/setjmp-common.S:
#if defined NOT_IN_libc && defined IS_IN_rtld
li r3,0
blr
#else
b JUMPTARGET (BP_SYM (__sigjmp_save))
#endif
and mentioned it in his mail? Or do you see it missing elsewhere?
Jakub
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |