diff options
Diffstat (limited to 'nptl/sysdeps/x86_64')
-rw-r--r-- | nptl/sysdeps/x86_64/tls.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nptl/sysdeps/x86_64/tls.h b/nptl/sysdeps/x86_64/tls.h index ab13f25431..074eb64a8c 100644 --- a/nptl/sysdeps/x86_64/tls.h +++ b/nptl/sysdeps/x86_64/tls.h @@ -159,6 +159,10 @@ typedef struct : "i" (offsetof (struct pthread, header.self))); \ __self;}) +/* Identifier for the current thread. THREAD_SELF is usable but + sometimes more expensive than necessary. It is fine here. */ +# define THREAD_ID THREAD_SELF + /* Read member of the thread descriptor directly. */ # define THREAD_GETMEM(descr, member) \ |