about summary refs log tree commit diff
path: root/sysdeps/ia64/nptl
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2021-12-09 09:49:32 +0100
committerFlorian Weimer <fweimer@redhat.com>2021-12-09 09:49:32 +0100
commitce2248ab91b2ea09a378f85012f251f31ac65e31 (patch)
treebb3fe4e9cd3ce325947f2b3cee4d0570f48e13d5 /sysdeps/ia64/nptl
parent8dbeb0561eeb876f557ac9eef5721912ec074ea5 (diff)
downloadglibc-ce2248ab91b2ea09a378f85012f251f31ac65e31.tar.gz
glibc-ce2248ab91b2ea09a378f85012f251f31ac65e31.tar.xz
glibc-ce2248ab91b2ea09a378f85012f251f31ac65e31.zip
nptl: Introduce <tcb-access.h> for THREAD_* accessors
These are common between most architectures.  Only the x86 targets
are outliers.

Reviewed-by: Szabolcs Nagy <szabolcs.nagy@arm.com>
Diffstat (limited to 'sysdeps/ia64/nptl')
-rw-r--r--sysdeps/ia64/nptl/tls.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/sysdeps/ia64/nptl/tls.h b/sysdeps/ia64/nptl/tls.h
index 8c26728859..44951da24b 100644
--- a/sysdeps/ia64/nptl/tls.h
+++ b/sysdeps/ia64/nptl/tls.h
@@ -128,15 +128,7 @@ register struct pthread *__thread_self __asm__("r13");
 /* Magic for libthread_db to know how to do THREAD_SELF.  */
 # define DB_THREAD_SELF REGISTER (64, 64, 13 * 8, -TLS_PRE_TCB_SIZE)
 
-/* Access to data in the thread descriptor is easy.  */
-#define THREAD_GETMEM(descr, member) \
-  descr->member
-#define THREAD_GETMEM_NC(descr, member, idx) \
-  descr->member[idx]
-#define THREAD_SETMEM(descr, member, value) \
-  descr->member = (value)
-#define THREAD_SETMEM_NC(descr, member, idx, value) \
-  descr->member[idx] = (value)
+# include <tcb-access.h>
 
 /* Set the stack guard field in TCB head.  */
 #define THREAD_SET_STACK_GUARD(value) \