diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-07-08 03:42:49 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-07-08 03:42:49 +0000 |
commit | d810b3584c4569612e078cbdd36bbf5c9272430c (patch) | |
tree | 608b5f60a5cb8ee434551768a69e5c0a0841e2a0 /nptl/sysdeps/alpha/elf | |
parent | db54f488ee24b14027c485e0005950dfdd5ef885 (diff) | |
download | glibc-d810b3584c4569612e078cbdd36bbf5c9272430c.tar glibc-d810b3584c4569612e078cbdd36bbf5c9272430c.tar.gz glibc-d810b3584c4569612e078cbdd36bbf5c9272430c.tar.bz2 glibc-d810b3584c4569612e078cbdd36bbf5c9272430c.zip |
Update.
2003-07-07 Ulrich Drepper <drepper@redhat.com>
* sysdeps/unix/sysv/linux/kernel-features.h: Version
__ASSUME_CORRECT_SI_PID and __ASSUME_TGKILL if possible.
* sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Adjust for
compilation with HAVE_AUX_SECURE defined.
Diffstat (limited to 'nptl/sysdeps/alpha/elf')
-rw-r--r-- | nptl/sysdeps/alpha/elf/pt-initfini.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/nptl/sysdeps/alpha/elf/pt-initfini.c b/nptl/sysdeps/alpha/elf/pt-initfini.c index d48c571b7c..ba2e419d61 100644 --- a/nptl/sysdeps/alpha/elf/pt-initfini.c +++ b/nptl/sysdeps/alpha/elf/pt-initfini.c @@ -45,17 +45,15 @@ __asm__ (" \n\ /*@_init_PROLOG_BEGINS*/ \n\ .section .init, \"ax\", @progbits \n\ .globl _init \n\ - .ent _init \n\ + .type _init,@function \n\ + .usepv _init,std \n\ _init: \n\ ldgp $29, 0($27) \n\ subq $30, 16, $30 \n\ stq $26, 0($30) \n\ stq $29, 8($30) \n\ - .prologue 1 \n\ bsr $26, __pthread_initialize_minimal_internal !samegp \n\ .align 3 \n\ - .end _init \n\ - .size _init, 0 \n\ /*@_init_PROLOG_ENDS*/ \n\ \n\ /*@_init_EPILOG_BEGINS*/ \n\ @@ -69,16 +67,14 @@ _init: \n\ /*@_fini_PROLOG_BEGINS*/ \n\ .section .fini, \"ax\", @progbits \n\ .globl _fini \n\ - .ent _fini \n\ + .type _fini,@function \n\ + .usepv _fini,std \n\ _fini: \n\ ldgp $29, 0($27) \n\ subq $30, 16, $30 \n\ stq $26, 0($30) \n\ stq $29, 8($30) \n\ - .prologue 1 \n\ .align 3 \n\ - .end _fini \n\ - .size _fini, 0 \n\ /*@_fini_PROLOG_ENDS*/ \n\ \n\ /*@_fini_EPILOG_BEGINS*/ \n\ |