[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[commits] r2962 - in /fsf/glibc-2_6-branch/libc/nptl: ChangeLog sysdeps/sparc/tls.h



Author: eglibc
Date: Sat Jul 28 00:06:08 2007
New Revision: 2962

Log:
Import glibc-2.6 for 2007-07-28

Modified:
    fsf/glibc-2_6-branch/libc/nptl/ChangeLog
    fsf/glibc-2_6-branch/libc/nptl/sysdeps/sparc/tls.h

Modified: fsf/glibc-2_6-branch/libc/nptl/ChangeLog
==============================================================================
--- fsf/glibc-2_6-branch/libc/nptl/ChangeLog (original)
+++ fsf/glibc-2_6-branch/libc/nptl/ChangeLog Sat Jul 28 00:06:08 2007
@@ -1,3 +1,12 @@
+2007-07-27  Jakub Jelinek  <jakub@xxxxxxxxxx>
+
+	* sysdeps/sparc/tls.h (tcbhead_t): Move gscope_flag to the end
+	of the structure for sparc32.
+
+2007-07-26  Aurelien Jarno  <aurelien@xxxxxxxxxxx>
+
+	* sysdeps/sparc/tls.h (tcbhead_t): Add gscope_flag.
+
 2007-06-22  Jakub Jelinek  <jakub@xxxxxxxxxx>
 
 	* pthread_getattr_np.c (pthread_getattr_np): Clear cpuset and

Modified: fsf/glibc-2_6-branch/libc/nptl/sysdeps/sparc/tls.h
==============================================================================
--- fsf/glibc-2_6-branch/libc/nptl/sysdeps/sparc/tls.h (original)
+++ fsf/glibc-2_6-branch/libc/nptl/sysdeps/sparc/tls.h Sat Jul 28 00:06:08 2007
@@ -46,9 +46,15 @@
   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__ */