diff options
author | Roland McGrath <roland@hack.frob.com> | 2014-10-17 15:03:00 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2014-10-17 15:03:00 -0700 |
commit | 674b89786e04a4addc79d70e025848f1e0116a41 (patch) | |
tree | f74ab3ca737fbdf509e9cb02dac99bddda136f30 /sysdeps/ia64/nptl | |
parent | 184ee94010786a9e0952aff3af39eba1d72287d3 (diff) | |
download | glibc-674b89786e04a4addc79d70e025848f1e0116a41.tar.gz glibc-674b89786e04a4addc79d70e025848f1e0116a41.tar.xz glibc-674b89786e04a4addc79d70e025848f1e0116a41.zip |
NPTL: Clean up THREAD_SYSINFO macros.
Diffstat (limited to 'sysdeps/ia64/nptl')
-rw-r--r-- | sysdeps/ia64/nptl/tls.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sysdeps/ia64/nptl/tls.h b/sysdeps/ia64/nptl/tls.h index e38352a973..8805f851e6 100644 --- a/sysdeps/ia64/nptl/tls.h +++ b/sysdeps/ia64/nptl/tls.h @@ -109,8 +109,12 @@ register struct pthread *__thread_self __asm__("r13"); #define THREAD_SYSINFO(pd) \ (((tcbhead_t *) ((char *) (pd) + TLS_PRE_TCB_SIZE))->__private) -#if defined NEED_DL_SYSINFO +#ifdef NEED_DL_SYSINFO # define INIT_SYSINFO THREAD_SELF_SYSINFO = (void *) GLRO(dl_sysinfo) +# define SETUP_THREAD_SYSINFO(pd) \ + (THREAD_SYSINFO (pd) = THREAD_SELF_SYSINFO) +# define CHECK_THREAD_SYSINFO(pd) \ + assert (THREAD_SYSINFO (pd) == THREAD_SELF_SYSINFO) #else # define INIT_SYSINFO NULL #endif |