diff options
author | Andreas Jaeger <aj@suse.de> | 2001-05-16 16:12:54 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-05-16 16:12:54 +0000 |
commit | f010f4a36f2b6e037a78dfa82ca2f666da1657f9 (patch) | |
tree | 23e5a4d5e7f244c867571b93fc573e1ea1ae8c29 /sysdeps/unix/sysv/linux/s390 | |
parent | 19e4c7dd9171d6998ea57585ae61f3626f878056 (diff) | |
download | glibc-f010f4a36f2b6e037a78dfa82ca2f666da1657f9.tar glibc-f010f4a36f2b6e037a78dfa82ca2f666da1657f9.tar.gz glibc-f010f4a36f2b6e037a78dfa82ca2f666da1657f9.tar.bz2 glibc-f010f4a36f2b6e037a78dfa82ca2f666da1657f9.zip |
Update.
2001-05-16 Martin Schwidefsky <schwidefsky@de.ibm.com>
* sysdeps/unix/sysv/linux/s390/s390-64/clone.S: Fix stack allocation.
Diffstat (limited to 'sysdeps/unix/sysv/linux/s390')
-rw-r--r-- | sysdeps/unix/sysv/linux/s390/s390-64/clone.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/clone.S b/sysdeps/unix/sysv/linux/s390/s390-64/clone.S index c6b160ac39..a491b09518 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/clone.S +++ b/sysdeps/unix/sysv/linux/s390/s390-64/clone.S @@ -46,7 +46,7 @@ thread_start: /* fn is in gpr 1, arg in gpr 5 */ lgr %r2,%r5 /* set first parameter to void *arg */ sgr %r11,%r11 /* terminate the stack frame */ - aghi %r15,-96 /* make room on the stack for the save area */ + aghi %r15,-160 /* make room on the stack for the save area */ basr %r14,%r1 /* jump to fn */ #ifdef PIC larl %r12,_GLOBAL_OFFSET_TABLE_ |