mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-08 18:30:18 +00:00
* sysdeps/alpha/elf/start.S (_start): Use $15 as frame unwind instead of $31. Zero $15. * sysdeps/unix/sysv/linux/alpha/clone.S (thread_start): Likewise.
2004-08-25 Richard Henderson <rth@redhat.com> * sysdeps/alpha/elf/start.S (_start): Use $15 as frame unwind instead of $31. Zero $15. * sysdeps/unix/sysv/linux/alpha/clone.S (thread_start): Likewise.
This commit is contained in:
parent
d6db09753a
commit
effeb660b7
@ -1,3 +1,9 @@
|
|||||||
|
2004-08-25 Richard Henderson <rth@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/alpha/elf/start.S (_start): Use $15 as frame unwind
|
||||||
|
instead of $31. Zero $15.
|
||||||
|
* sysdeps/unix/sysv/linux/alpha/clone.S (thread_start): Likewise.
|
||||||
|
|
||||||
2004-08-25 Ulrich Drepper <drepper@redhat.com>
|
2004-08-25 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* nscd/connections.c: Make socket nonblocking so that threads
|
* nscd/connections.c: Make socket nonblocking so that threads
|
||||||
|
@ -44,10 +44,11 @@
|
|||||||
.ent _start, 0
|
.ent _start, 0
|
||||||
.type _start,@function
|
.type _start,@function
|
||||||
_start:
|
_start:
|
||||||
.frame $31, 0, $31
|
.frame $15, 0, $15
|
||||||
br gp, 1f
|
br gp, 1f
|
||||||
1: ldgp gp, 0(gp)
|
1: ldgp gp, 0(gp)
|
||||||
subq sp, 16, sp
|
subq sp, 16, sp
|
||||||
|
mov 0, $15
|
||||||
.prologue 0
|
.prologue 0
|
||||||
|
|
||||||
/* Load address of the user's main function. */
|
/* Load address of the user's main function. */
|
||||||
|
@ -89,7 +89,8 @@ $error:
|
|||||||
|
|
||||||
.ent thread_start
|
.ent thread_start
|
||||||
thread_start:
|
thread_start:
|
||||||
.frame zero,0,zero,0
|
.frame fp,0,fp,0
|
||||||
|
mov 0, fp
|
||||||
.prologue 0
|
.prologue 0
|
||||||
|
|
||||||
/* Load up the arguments. */
|
/* Load up the arguments. */
|
||||||
|
Loading…
Reference in New Issue
Block a user