aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-01-30 21:09:44 +0000
committerUlrich Drepper <drepper@redhat.com>2003-01-30 21:09:44 +0000
commitc4c1336c986e785507ca5b6fbd21d87af7f1833d (patch)
tree1f537de4bfb5783892d3a8150148d6f4eb3c3693 /sysdeps
parentec67a380c2b710729d17bf8f8ed4d614e07d9f17 (diff)
downloadglibc-c4c1336c986e785507ca5b6fbd21d87af7f1833d.tar
glibc-c4c1336c986e785507ca5b6fbd21d87af7f1833d.tar.gz
glibc-c4c1336c986e785507ca5b6fbd21d87af7f1833d.tar.bz2
glibc-c4c1336c986e785507ca5b6fbd21d87af7f1833d.zip
Update.
2003-01-30 Jakub Jelinek <jakub@redhat.com> * sysdeps/unix/sysv/linux/s390/s390-64/clone.S (__clone): Use lg, not l to load tls from stack.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/unix/sysv/linux/s390/s390-64/clone.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/clone.S b/sysdeps/unix/sysv/linux/s390/s390-64/clone.S
index fdeb4c806f..c6f2bdcbd8 100644
--- a/sysdeps/unix/sysv/linux/s390/s390-64/clone.S
+++ b/sysdeps/unix/sysv/linux/s390/s390-64/clone.S
@@ -1,5 +1,5 @@
/* Wrapper around clone system call. 64 bit S/390 version.
- Copyright (C) 2001 Free Software Foundation, Inc.
+ Copyright (C) 2001, 2003 Free Software Foundation, Inc.
Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com).
This file is part of the GNU C Library.
@@ -41,7 +41,7 @@ ENTRY(__clone)
lgr %r3,%r4 /* move flags to %r3 */
lgr %r4,%r6 /* move parent_tid to %r4 */
lg %r5,168(%r15) /* load child_tid from stack */
- l %r6,160(%r15) /* load tls from stack */
+ lg %r6,160(%r15) /* load tls from stack */
svc SYS_ify(clone)
ltgr %r2,%r2 /* check return code */
jz thread_start