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

r1879 - in glibc-package/branches/glibc-2.5/debian: . patches/powerpc



Author: aurel32
Date: 2006-11-05 21:50:59 +0100 (Sun, 05 Nov 2006)
New Revision: 1879

Added:
   glibc-package/branches/glibc-2.5/debian/patches/powerpc/cvs-tls-debug.diff
Modified:
   glibc-package/branches/glibc-2.5/debian/changelog
Log:
  * debian/powerpc/cvs-tls-debug.diff: new patch (fix for debugging
    thread-local variables on powerpc) from CVS.



Modified: glibc-package/branches/glibc-2.5/debian/changelog
===================================================================
--- glibc-package/branches/glibc-2.5/debian/changelog	2006-11-04 22:37:18 UTC (rev 1878)
+++ glibc-package/branches/glibc-2.5/debian/changelog	2006-11-05 20:50:59 UTC (rev 1879)
@@ -58,6 +58,8 @@
   * debian/debhelper.in/libc-dev-otherbuild.overrides: new file.
   * debian/any/submitted-getcwd-sys_param_h.diff: new patch (fix the build
     with linuxthreads) from the libc-alpha mailing list.
+  * debian/powerpc/cvs-tls-debug.diff: new patch (fix for debugging
+    thread-local variables on powerpc) from CVS.
 
   [ Denis Barbier ]
   * Remove localedata/locale-en_NZ.diff (merged upstream).
@@ -77,7 +79,7 @@
   * Update localedata/fix-lang.diff
   * Update localedata/first_weekday.diff
 
- -- Aurelien Jarno <aurel32@debian.org>  Thu,  2 Nov 2006 19:14:33 +0100
+ -- Aurelien Jarno <aurel32@debian.org>  Sun,  5 Nov 2006 21:50:19 +0100
 
 glibc (2.4-1) UNRELEASED; urgency=low
 

Added: glibc-package/branches/glibc-2.5/debian/patches/powerpc/cvs-tls-debug.diff
===================================================================
--- glibc-package/branches/glibc-2.5/debian/patches/powerpc/cvs-tls-debug.diff	2006-11-04 22:37:18 UTC (rev 1878)
+++ glibc-package/branches/glibc-2.5/debian/patches/powerpc/cvs-tls-debug.diff	2006-11-05 20:50:59 UTC (rev 1879)
@@ -0,0 +1,15 @@
+2006-10-26  Pete Eberlein  <eberlein@us.ibm.com>
+
+	* nptl_db/db_info.c [TLS_DTV_AT_TP]: Fixed size init for dtvp
+	to sizeof a pointer, instead of sizeof the union.
+
+
+--- glibc/nptl_db/db_info.c        2004-03-13 22:39:57.000000000 -0500
++++ glibc-new/nptl_db/db_info.c    2006-10-20 19:29:34.000000000 -0400
+@@ -59,7 +59,7 @@
+    i.e. at the very end of the area covered by TLS_PRE_TCB_SIZE.  */
+ DESC (_thread_db_pthread_dtvp,
+       TLS_PRE_TCB_SIZE + offsetof (tcbhead_t, dtv)
+-      - (TLS_TCB_SIZE == 0 ? sizeof (tcbhead_t) : 0), union dtv)
++      - (TLS_TCB_SIZE == 0 ? sizeof (tcbhead_t) : 0), union dtv*)
+ #endif



Reply to: