mirror of git://sourceware.org/git/glibc.git
Update.
2004-11-17 Randolph Chung <tausq@debian.org> * sysdeps/hppa/dl-machine.h (TRAMPOLINE_TEMPLATE): Add unwind annotations.
This commit is contained in:
parent
c06a6956a4
commit
3defcff399
|
|
@ -1,3 +1,8 @@
|
||||||
|
2004-11-17 Randolph Chung <tausq@debian.org>
|
||||||
|
|
||||||
|
* sysdeps/hppa/dl-machine.h (TRAMPOLINE_TEMPLATE): Add unwind
|
||||||
|
annotations.
|
||||||
|
|
||||||
2004-11-18 Jakub Jelinek <jakub@redhat.com>
|
2004-11-18 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
[BZ #544]
|
[BZ #544]
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,8 @@
|
||||||
|
2004-11-18 Kaz Kojima <kkojima@rr.iij4u.or.jp>
|
||||||
|
|
||||||
|
* sysdeps/sh/tls.h (DB_THREAD_SELF): Set the correct bias
|
||||||
|
parameter to REGISTER macro.
|
||||||
|
|
||||||
2004-11-17 Roland McGrath <roland@redhat.com>
|
2004-11-17 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/timer_routines.c (__start_helper_thread):
|
* sysdeps/unix/sysv/linux/timer_routines.c (__start_helper_thread):
|
||||||
|
|
|
||||||
|
|
@ -118,7 +118,8 @@ typedef struct
|
||||||
__self - 1;})
|
__self - 1;})
|
||||||
|
|
||||||
/* Magic for libthread_db to know how to do THREAD_SELF. */
|
/* Magic for libthread_db to know how to do THREAD_SELF. */
|
||||||
# define DB_THREAD_SELF REGISTER (32, 32, REG_GBR * 4, 0)
|
# define DB_THREAD_SELF \
|
||||||
|
REGISTER (32, 32, REG_GBR * 4, -sizeof (struct pthread))
|
||||||
|
|
||||||
/* Read member of the thread descriptor directly. */
|
/* Read member of the thread descriptor directly. */
|
||||||
# define THREAD_GETMEM(descr, member) (descr->member)
|
# define THREAD_GETMEM(descr, member) (descr->member)
|
||||||
|
|
|
||||||
|
|
@ -495,6 +495,9 @@ asm ( \
|
||||||
" .globl " #tramp_name "\n" \
|
" .globl " #tramp_name "\n" \
|
||||||
" .type " #tramp_name ",@function\n" \
|
" .type " #tramp_name ",@function\n" \
|
||||||
#tramp_name ":\n" \
|
#tramp_name ":\n" \
|
||||||
|
" .proc\n" \
|
||||||
|
" .callinfo frame=64,calls,save_rp\n" \
|
||||||
|
" .entry\n" \
|
||||||
/* Save return pointer */ \
|
/* Save return pointer */ \
|
||||||
" stw %r2,-20(%sp)\n" \
|
" stw %r2,-20(%sp)\n" \
|
||||||
/* Save argument registers in the call stack frame. */ \
|
/* Save argument registers in the call stack frame. */ \
|
||||||
|
|
@ -526,7 +529,8 @@ asm ( \
|
||||||
" bv %r0(%r22)\n" \
|
" bv %r0(%r22)\n" \
|
||||||
/* Return pointer. */ \
|
/* Return pointer. */ \
|
||||||
" ldw -20(%sp),%r2\n" \
|
" ldw -20(%sp),%r2\n" \
|
||||||
);
|
" .exit\n" \
|
||||||
|
" .procend\n");
|
||||||
|
|
||||||
#ifndef PROF
|
#ifndef PROF
|
||||||
#define ELF_MACHINE_RUNTIME_TRAMPOLINE \
|
#define ELF_MACHINE_RUNTIME_TRAMPOLINE \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue