diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2017-07-19 11:45:37 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2017-07-19 14:24:43 -0300 |
commit | d500130f313572651e1d299f1677f8d677060fb2 (patch) | |
tree | ca44bd3b3941f7f8574992eba82e3199c6786146 /sysdeps/unix/sysv/linux/alpha | |
parent | f8cef4d07d9641e27629bd3ce2d13f5d702fb251 (diff) | |
download | glibc-d500130f313572651e1d299f1677f8d677060fb2.tar.gz |
alpha: Fix clone exit syscall argument passing (BZ#21512)
This patch fixes the argument passing for exit syscall after
the clone function returns on hppa. This fixes misc/tst-clone2
on alpha-linux-gnu.
Checked misc/tst-clone2 on alpha-linux-gnu.
[BZ #21512]
* sysdeps/unix/sysv/linux/alpha/clone.S (__clone): Fix argument
passing to syscall exit.
Diffstat (limited to 'sysdeps/unix/sysv/linux/alpha')
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/clone.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/clone.S b/sysdeps/unix/sysv/linux/alpha/clone.S index 550461fb3b..e7ee0af258 100644 --- a/sysdeps/unix/sysv/linux/alpha/clone.S +++ b/sysdeps/unix/sysv/linux/alpha/clone.S @@ -98,6 +98,7 @@ thread_start: jsr ra, (pv) ldgp gp, 0(ra) + mov v0, a0 ldiq v0, __NR_exit call_pal PAL_callsys |