]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
2007-07-27 Jakub Jelinek <jakub@redhat.com>
authorJakub Jelinek <jakub@redhat.com>
Fri, 27 Jul 2007 22:16:43 +0000 (22:16 +0000)
committerJakub Jelinek <jakub@redhat.com>
Fri, 27 Jul 2007 22:16:43 +0000 (22:16 +0000)
* sysdeps/sparc/tls.h (tcbhead_t): Move gscope_flag to the end
of the structure for sparc32.

2007-07-26  Aurelien Jarno  <aurelien@aurel32.net>

* sysdeps/sparc/tls.h (tcbhead_t): Add gscope_flag.

nptl/ChangeLog
nptl/sysdeps/sparc/tls.h

index 88c3210a696fcb8911d95fd3626bd9ff504bf078..2ebb299ad17a43ec0d1aa8f505f1b3cba3a173fe 100644 (file)
@@ -1,3 +1,12 @@
+2007-07-27  Jakub Jelinek  <jakub@redhat.com>
+
+       * sysdeps/sparc/tls.h (tcbhead_t): Move gscope_flag to the end
+       of the structure for sparc32.
+
+2007-07-26  Aurelien Jarno  <aurelien@aurel32.net>
+
+       * sysdeps/sparc/tls.h (tcbhead_t): Add gscope_flag.
+
 2007-06-22  Jakub Jelinek  <jakub@redhat.com>
 
        * pthread_getattr_np.c (pthread_getattr_np): Clear cpuset and
index 60e52fd4eab21517c616b53ca3200eac94fc6329..53b5eee08976061e6b24ac122c7256e0d5ac6aea 100644 (file)
@@ -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__ */