From ef0af159c51df55116336189c2e84c29bc5e8228 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Fri, 27 Jul 2007 22:07:39 +0000 Subject: [PATCH] 2007-07-27 Jakub Jelinek * sysdeps/sparc/tls.h (tcbhead_t): Move gscope_flag to the end of the structure for sparc32. 2007-07-26 Aurelien Jarno * sysdeps/sparc/tls.h (tcbhead_t): Add gscope_flag. 2007-07-27 Jakub Jelinek * sysdeps/sparc/tls.h (tcbhead_t): Move gscope_flag to the end of the structure for sparc32. 2007-07-26 Aurelien Jarno * sysdeps/sparc/tls.h (tcbhead_t): Add gscope_flag. --- nptl/ChangeLog | 9 +++++++++ nptl/sysdeps/sparc/tls.h | 6 ++++++ 2 files changed, 15 insertions(+) diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 3bbfb16ae7..68a7d3aadb 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,12 @@ +2007-07-27 Jakub Jelinek + + * sysdeps/sparc/tls.h (tcbhead_t): Move gscope_flag to the end + of the structure for sparc32. + +2007-07-26 Aurelien Jarno + + * sysdeps/sparc/tls.h (tcbhead_t): Add gscope_flag. + 2007-07-23 Ulrich Drepper * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S: Fix diff --git a/nptl/sysdeps/sparc/tls.h b/nptl/sysdeps/sparc/tls.h index 788c974c1c..c4741c8fc8 100644 --- a/nptl/sysdeps/sparc/tls.h +++ b/nptl/sysdeps/sparc/tls.h @@ -46,9 +46,15 @@ typedef struct dtv_t *dtv; void *self; int multiple_threads; +#if __WORDSIZE == 64 + int gscope_flag; +#endif uintptr_t sysinfo; uintptr_t stack_guard; uintptr_t pointer_guard; +#if __WORDSIZE != 64 + int gscope_flag; +#endif } tcbhead_t; #else /* __ASSEMBLER__ */ -- 2.11.4.GIT