]> 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:18:15 +0000 (22:18 +0000)
committerJakub Jelinek <jakub@redhat.com>
Fri, 27 Jul 2007 22:18:15 +0000 (22:18 +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 a3ba15dc8d1f98423ae3f45d6c13a4b7915167e4..47ea82ff5df29d90249e9de67a8937790f94317b 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 a008f290557220a11059e36c7621e73e4b151cb0..90a3e0bf3d87186f0796db13beaa95a6aa04231f 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__ */