about summary refs log tree commit diff
path: root/nptl/sysdeps/s390
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-02-14 06:11:21 +0000
committerUlrich Drepper <drepper@redhat.com>2003-02-14 06:11:21 +0000
commitdac0f7723437aa52232eb98500be1608b32fc657 (patch)
tree74aea743bf6cfda378df2b38ac43e74c66b35488 /nptl/sysdeps/s390
parenta7720b5e184ed038576e017701911169c7de8f8a (diff)
downloadglibc-dac0f7723437aa52232eb98500be1608b32fc657.tar.gz
glibc-dac0f7723437aa52232eb98500be1608b32fc657.tar.xz
glibc-dac0f7723437aa52232eb98500be1608b32fc657.zip
Update.
2003-02-13  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/alpha/dl-machine.h (elf_machine_rela): Add instead of
	subtracting map->l_tls_offset.
Diffstat (limited to 'nptl/sysdeps/s390')
-rw-r--r--nptl/sysdeps/s390/tls.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/nptl/sysdeps/s390/tls.h b/nptl/sysdeps/s390/tls.h
index fd43564762..9b186f657f 100644
--- a/nptl/sysdeps/s390/tls.h
+++ b/nptl/sysdeps/s390/tls.h
@@ -136,13 +136,13 @@ typedef struct
 
 /* Access to data in the thread descriptor is easy.  */
 #define THREAD_GETMEM(descr, member) \
-  THREAD_SELF->member
+  descr->member
 #define THREAD_GETMEM_NC(descr, member, idx) \
-  THREAD_SELF->member[idx]
+  descr->member[idx]
 #define THREAD_SETMEM(descr, member, value) \
-  THREAD_SELF->member = (value)
+  descr->member = (value)
 #define THREAD_SETMEM_NC(descr, member, idx, value) \
-  THREAD_SELF->member[idx] = (value)
+  descr->member[idx] = (value)
 
 #endif /* __ASSEMBLER__ */