about summary refs log tree commit diff
path: root/sysdeps/i386/nptl
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2014-10-17 15:03:00 -0700
committerRoland McGrath <roland@hack.frob.com>2014-10-17 15:03:00 -0700
commit674b89786e04a4addc79d70e025848f1e0116a41 (patch)
treef74ab3ca737fbdf509e9cb02dac99bddda136f30 /sysdeps/i386/nptl
parent184ee94010786a9e0952aff3af39eba1d72287d3 (diff)
downloadglibc-674b89786e04a4addc79d70e025848f1e0116a41.tar.gz
glibc-674b89786e04a4addc79d70e025848f1e0116a41.tar.xz
glibc-674b89786e04a4addc79d70e025848f1e0116a41.zip
NPTL: Clean up THREAD_SYSINFO macros.
Diffstat (limited to 'sysdeps/i386/nptl')
-rw-r--r--sysdeps/i386/nptl/tls.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/sysdeps/i386/nptl/tls.h b/sysdeps/i386/nptl/tls.h
index d7302ba8aa..dd90978f69 100644
--- a/sysdeps/i386/nptl/tls.h
+++ b/sysdeps/i386/nptl/tls.h
@@ -141,9 +141,6 @@ union user_desc_init
 # define GET_DTV(descr) \
   (((tcbhead_t *) (descr))->dtv)
 
-#define THREAD_SELF_SYSINFO	THREAD_GETMEM (THREAD_SELF, header.sysinfo)
-#define THREAD_SYSINFO(pd)	((pd)->header.sysinfo)
-
 /* Macros to load from and store into segment registers.  */
 # ifndef TLS_GET_GS
 #  define TLS_GET_GS() \
@@ -154,9 +151,13 @@ union user_desc_init
   __asm ("movw %w0, %%gs" :: "q" (val))
 # endif
 
-#if defined NEED_DL_SYSINFO
+#ifdef NEED_DL_SYSINFO
 # define INIT_SYSINFO \
   _head->sysinfo = GLRO(dl_sysinfo)
+# define SETUP_THREAD_SYSINFO(pd) \
+  ((pd)->header.sysinfo = THREAD_GETMEM (THREAD_SELF, header.sysinfo))
+# define CHECK_THREAD_SYSINFO(pd) \
+  assert ((pd)->header.sysinfo == THREAD_GETMEM (THREAD_SELF, header.sysinfo))
 #else
 # define INIT_SYSINFO
 #endif