x86: Remove an extra space before THREAD_SELF

After

f6dd43d5f7 i386: Remove stalled __GNUC_PREREQ (6, 0) test in THREAD_SELF()
b0f0c41a5f x86_64: Remove stalled __GNUC_PREREQ (6, 0) test in THREAD_SELF()

removed the unnecessary __GNUC_PREREQ (6, 0) test, remove the extra space
before THREAD_SELF macro name.

Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
This commit is contained in:
H.J. Lu 2025-08-21 19:29:58 -07:00
parent b0f0c41a5f
commit bb7fb0f1a7
2 changed files with 2 additions and 2 deletions

View File

@ -222,7 +222,7 @@ tls_fill_user_desc (union user_desc_init *desc,
/* Return the thread descriptor for the current thread. */ /* Return the thread descriptor for the current thread. */
# define THREAD_SELF \ # define THREAD_SELF \
(*(struct pthread *__seg_gs *) offsetof (struct pthread, header.self)) (*(struct pthread *__seg_gs *) offsetof (struct pthread, header.self))
/* Magic for libthread_db to know how to do THREAD_SELF. */ /* Magic for libthread_db to know how to do THREAD_SELF. */

View File

@ -169,7 +169,7 @@ _Static_assert (offsetof (tcbhead_t, __glibc_unused2) == 0x80,
/* Return the thread descriptor for the current thread. */ /* Return the thread descriptor for the current thread. */
# define THREAD_SELF \ # define THREAD_SELF \
(*(struct pthread *__seg_fs *) offsetof (struct pthread, header.self)) (*(struct pthread *__seg_fs *) offsetof (struct pthread, header.self))
/* Magic for libthread_db to know how to do THREAD_SELF. */ /* Magic for libthread_db to know how to do THREAD_SELF. */