diff options
author | Roland McGrath <roland@gnu.org> | 2003-03-21 20:37:16 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-03-21 20:37:16 +0000 |
commit | 471b93a85029e4011a5a05dfd1e3822085e34bb1 (patch) | |
tree | df7d8c4b1bc701927808b4c539644ef8d993bb0f | |
parent | ee7b703635bf9c2df1c064a303eceda80d579b2d (diff) | |
download | glibc-471b93a85029e4011a5a05dfd1e3822085e34bb1.tar.gz glibc-471b93a85029e4011a5a05dfd1e3822085e34bb1.tar.xz glibc-471b93a85029e4011a5a05dfd1e3822085e34bb1.zip |
2003-03-21 Jakub Jelinek <jakub@redhat.com>
* sysdeps/i386/tls.h [__ASSUME_SET_THREAD_AREA_SYSCALL] (TLS_SETUP_GS_SEGMENT): Fix a typo.
-rw-r--r-- | linuxthreads/sysdeps/i386/tls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linuxthreads/sysdeps/i386/tls.h b/linuxthreads/sysdeps/i386/tls.h index 118c9c02d1..01965f7208 100644 --- a/linuxthreads/sysdeps/i386/tls.h +++ b/linuxthreads/sysdeps/i386/tls.h @@ -171,7 +171,7 @@ TLS_DO_MODIFY_LDT_KERNEL_CHECK( \ # ifdef __ASSUME_SET_THREAD_AREA_SYSCALL # define TLS_SETUP_GS_SEGMENT(descr, secondcall) \ - (TLS_DO_SET_THREAD_AREA (descr, firstcall) \ + (TLS_DO_SET_THREAD_AREA (descr, secondcall) \ ? "set_thread_area failed when setting up thread-local storage" : NULL) # elif defined __NR_set_thread_area # define TLS_SETUP_GS_SEGMENT(descr, secondcall) \ |