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.
This commit is contained in:
Ulrich Drepper 2003-01-30 21:09:44 +00:00
parent ec67a380c2
commit c4c1336c98
3 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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.
2003-01-30 Roland McGrath <roland@redhat.com>
* sysdeps/generic/dl-tls.c (_dl_allocate_tls_init): Move check for

View File

@ -1,3 +1,7 @@
2003-01-30 Ulrich Drepper <drepper@redhat.com>
* Makefile (LOCALES): Add vi_VN.TCVN5712-1.
2003-01-14 Ulrich Drepper <drepper@redhat.com>
* locales/sv_SE [LC_TIME]: Define first_weekday and first_workday

View File

@ -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