This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
[RFC v2][PATCH 08/27] Add Infinity THREAD_SELF macros to sysdeps/m68k/nptl/tls.h
- From: Gary Benson <gbenson at redhat dot com>
- To: libc-alpha at sourceware dot org
- Date: Mon, 13 Jun 2016 11:38:12 +0100
- Subject: [RFC v2][PATCH 08/27] Add Infinity THREAD_SELF macros to sysdeps/m68k/nptl/tls.h
- Authentication-results: sourceware.org; auth=none
- References: <1465814311-31470-1-git-send-email-gbenson at redhat dot com>
This commit adds Infinity THREAD_SELF macros for m68k.
---
sysdeps/m68k/nptl/tls.h | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/sysdeps/m68k/nptl/tls.h b/sysdeps/m68k/nptl/tls.h
index f932282..f5df7dd 100644
--- a/sysdeps/m68k/nptl/tls.h
+++ b/sysdeps/m68k/nptl/tls.h
@@ -125,9 +125,13 @@ extern void * __m68k_read_tp (void);
# define THREAD_SELF \
((struct pthread *) (__m68k_read_tp () - TLS_TCB_OFFSET - TLS_PRE_TCB_SIZE))
+/* Magic for Infinity to know how to do THREAD_SELF. */
+# define I8_THREAD_SELF I8_TS_CONST_THREAD_AREA
+# define I8_TS_CTA_VALUE TLS_TCB_OFFSET + TLS_PRE_TCB_SIZE
+
/* Magic for libthread_db to know how to do THREAD_SELF. */
# define DB_THREAD_SELF \
- CONST_THREAD_AREA (32, TLS_TCB_OFFSET + TLS_PRE_TCB_SIZE)
+ CONST_THREAD_AREA (32, I8_TS_CTA_VALUE)
/* Access to data in the thread descriptor is easy. */
# define THREAD_GETMEM(descr, member) \
--
1.7.1