diff options
author | Martin Galvan <martin.galvan@tallertechnologies.com> | 2015-03-28 01:31:56 -0300 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-03-28 00:44:22 -0400 |
commit | 4d611e1261961bb9460faf21418845918ad270fd (patch) | |
tree | 1544863ccfb5cb0be9860203c80d2ee0a861503a /sysdeps/x86_64 | |
parent | 7285eb535aa8bdb43298069b353a3a4b4340a2b4 (diff) | |
download | glibc-4d611e1261961bb9460faf21418845918ad270fd.tar.gz glibc-4d611e1261961bb9460faf21418845918ad270fd.tar.xz glibc-4d611e1261961bb9460faf21418845918ad270fd.zip |
NPTL: swap comments for THREAD_SETMEM and THREAD_SETMEM_NC for i386 and x86_64
The comments for THREAD_SETMEM and THREAD_SETMEM_NC were swapped for i386 and x86_64; this patch fixes that.
Diffstat (limited to 'sysdeps/x86_64')
-rw-r--r-- | sysdeps/x86_64/nptl/tls.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/x86_64/nptl/tls.h b/sysdeps/x86_64/nptl/tls.h index b947d57447..d7543c651f 100644 --- a/sysdeps/x86_64/nptl/tls.h +++ b/sysdeps/x86_64/nptl/tls.h @@ -250,7 +250,7 @@ typedef struct #endif -/* Same as THREAD_SETMEM, but the member offset can be non-constant. */ +/* Set member of the thread descriptor directly. */ # define THREAD_SETMEM(descr, member, value) \ ({ if (sizeof (descr->member) == 1) \ asm volatile ("movb %b0,%%fs:%P1" : \ @@ -273,7 +273,7 @@ typedef struct }}) -/* Set member of the thread descriptor directly. */ +/* Same as THREAD_SETMEM, but the member offset can be non-constant. */ # define THREAD_SETMEM_NC(descr, member, idx, value) \ ({ if (sizeof (descr->member[0]) == 1) \ asm volatile ("movb %b0,%%fs:%P1(%q2)" : \ |