pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/lang/tcl Add patch from Tcl cvs repository. See:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/34d21f9eb32b
branches:  trunk
changeset: 498718:34d21f9eb32b
user:      seb <seb%pkgsrc.org@localhost>
date:      Wed Aug 31 14:46:59 2005 +0000

description:
Add patch from Tcl cvs repository. See:
http://sourceforge.net/tracker/index.php?func=detail&aid=1222872&group_id=10894&atid=110894
http://cvs.sourceforge.net/viewcvs.py/tcl/tcl/unix/tclUnixNotfy.c?r1=1.11.2.12&r2=1.11.2.13&only_with_tag=core-8-4-branch

This has the added benefit of improving the tcl interpreter stability on
NetBSD/sparc64 2.0_STABLE: no more SIGBUS, due to a LP64 type problem with
a pthread_join() argument, even if the self-test is still shaggy.

Approved by jwise@.

diffstat:

 lang/tcl/distinfo         |   3 ++-
 lang/tcl/patches/patch-ak |  31 +++++++++++++++++++++++++++++++
 2 files changed, 33 insertions(+), 1 deletions(-)

diffs (49 lines):

diff -r b77c2a8721c7 -r 34d21f9eb32b lang/tcl/distinfo
--- a/lang/tcl/distinfo Wed Aug 31 12:13:02 2005 +0000
+++ b/lang/tcl/distinfo Wed Aug 31 14:46:59 2005 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.33 2005/08/02 22:37:18 seb Exp $
+$NetBSD: distinfo,v 1.34 2005/08/31 14:46:59 seb Exp $
 
 SHA1 (tcl8.4.11-src.tar.gz) = 4580adcbdcb7d09fd9a8ae8fbe61c592a56bfa9e
 RMD160 (tcl8.4.11-src.tar.gz) = 933dda739859af170c31cef855409f861ed597cb
@@ -13,3 +13,4 @@
 SHA1 (patch-ah) = 0aaa349fcf9ce736e1f7d3dad377ee355f549ecb
 SHA1 (patch-ai) = ef8939597e759a95ca869f93e251df76d9c660f9
 SHA1 (patch-aj) = 3e6844bce3e9c15100dd53ef4c8fb715ffebf1c9
+SHA1 (patch-ak) = 6d4ef7d1aa6709257add6f4cbc6b837f08004c55
diff -r b77c2a8721c7 -r 34d21f9eb32b lang/tcl/patches/patch-ak
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/lang/tcl/patches/patch-ak Wed Aug 31 14:46:59 2005 +0000
@@ -0,0 +1,31 @@
+$NetBSD: patch-ak,v 1.1 2005/08/31 14:46:59 seb Exp $
+
+--- tclUnixNotfy.c.orig        2005-06-07 10:26:58.000000000 +0000
++++ tclUnixNotfy.c
+@@ -275,7 +275,7 @@ Tcl_FinalizeNotifier(clientData)
+      */
+ 
+     if (notifierCount == 0) {
+-      int result, dummy;
++      int result;
+       if (triggerPipe < 0) {
+           panic("Tcl_FinalizeNotifier: notifier pipe not initialized");
+       }
+@@ -288,13 +288,14 @@ Tcl_FinalizeNotifier(clientData)
+        * not just close the pipe and check for EOF in the notifier
+        * thread because if a background child process was created with
+        * exec, select() would not register the EOF on the pipe until the
+-       * child processes had terminated. [Bug: 4139]
++       * child processes had terminated. [Bug: 4139][Bug: 1222872]
+        */
+       write(triggerPipe, "q", 1);
+       close(triggerPipe);
+-
++      while(triggerPipe >= 0) {
+       Tcl_ConditionWait(&notifierCV, &notifierMutex, NULL);
+-      result = Tcl_JoinThread(notifierThread, &dummy);
++      }
++      result = Tcl_JoinThread(notifierThread, NULL);
+       if (result) {
+           Tcl_Panic("Tcl_FinalizeNotifier: unable to join notifier thread");
+       }



Home | Main Index | Thread Index | Old Index