diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-12-09 09:49:32 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-12-09 09:49:32 +0100 |
commit | ce2248ab91b2ea09a378f85012f251f31ac65e31 (patch) | |
tree | bb3fe4e9cd3ce325947f2b3cee4d0570f48e13d5 /sysdeps/alpha | |
parent | 8dbeb0561eeb876f557ac9eef5721912ec074ea5 (diff) | |
download | glibc-ce2248ab91b2ea09a378f85012f251f31ac65e31.tar.gz |
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/alpha')
-rw-r--r-- | sysdeps/alpha/nptl/tls.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/sysdeps/alpha/nptl/tls.h b/sysdeps/alpha/nptl/tls.h index 6328112135..eef922f268 100644 --- a/sysdeps/alpha/nptl/tls.h +++ b/sysdeps/alpha/nptl/tls.h @@ -92,15 +92,7 @@ typedef struct # define DB_THREAD_SELF \ REGISTER (64, 64, 32 * 8, -sizeof (struct pthread)) -/* 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> /* Get and set the global scope generation counter in struct pthread. */ #define THREAD_GSCOPE_FLAG_UNUSED 0 |