aboutsummaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2005-06-30 18:57:11 +0000
committerPav Lucistnik <pav@FreeBSD.org>2005-06-30 18:57:11 +0000
commite99d9b0d4916754ac3510aa6114da9de96cf2cdf (patch)
treea4f0e44226b3792557e2fdf4358330b7dde9982a /lang
parentc1b3b498c098b401e9370277a9d48117da1b7948 (diff)
downloadports-e99d9b0d4916754ac3510aa6114da9de96cf2cdf.tar.gz
ports-e99d9b0d4916754ac3510aa6114da9de96cf2cdf.zip
Notes
Diffstat (limited to 'lang')
-rw-r--r--lang/tcl84/files/patch-tclUnixNotfy.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/lang/tcl84/files/patch-tclUnixNotfy.c b/lang/tcl84/files/patch-tclUnixNotfy.c
new file mode 100644
index 000000000000..e0160b7c1f4b
--- /dev/null
+++ b/lang/tcl84/files/patch-tclUnixNotfy.c
@@ -0,0 +1,25 @@
+===================================================================
+RCS file: /cvsroot/tcl/tcl/unix/tclUnixNotfy.c,v
+retrieving revision 1.11.2.11
+retrieving revision 1.11.2.12
+diff -u -r1.11.2.11 -r1.11.2.12
+--- tclUnixNotfy.c 2005/05/31 08:29:10 1.11.2.11
++++ tclUnixNotfy.c 2005/06/07 10:26:58 1.11.2.12
+@@ -275,7 +275,7 @@
+ */
+
+ if (notifierCount == 0) {
+- int result;
++ int result, dummy;
+ if (triggerPipe < 0) {
+ panic("Tcl_FinalizeNotifier: notifier pipe not initialized");
+ }
+@@ -294,7 +294,7 @@
+ close(triggerPipe);
+
+ Tcl_ConditionWait(&notifierCV, &notifierMutex, NULL);
+- result = Tcl_JoinThread(notifierThread);
++ result = Tcl_JoinThread(notifierThread, &dummy);
+ if (result) {
+ Tcl_Panic("Tcl_FinalizeNotifier: unable to join notifier thread");
+ }