Date: Tuesday, August 2, 2016 @ 22:00:51
  Author: arojas
Revision: 272917

Drop patch

Deleted:
  tcl/trunk/tcl-fix-segv.patch

--------------------+
 tcl-fix-segv.patch |   26 --------------------------
 1 file changed, 26 deletions(-)

Deleted: tcl-fix-segv.patch
===================================================================
--- tcl-fix-segv.patch  2016-08-02 22:00:19 UTC (rev 272916)
+++ tcl-fix-segv.patch  2016-08-02 22:00:51 UTC (rev 272917)
@@ -1,26 +0,0 @@
-From 55234833327f1ee7469552fa103c316e5405f8b0 Mon Sep 17 00:00:00 2001
-From: "[email protected]" <jan.nijtmans>
-Date: Mon, 21 Mar 2016 09:05:34 +0000
-Subject: [PATCH] Proposed fix for [d3071887dbc7aeac]: Fix SEGV in
- Tcl_FinalizeNotifier()
-
----
- unix/tclUnixNotfy.c | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c
-index 48ba0cc..3946c7d 100644
---- a/unix/tclUnixNotfy.c
-+++ b/unix/tclUnixNotfy.c
-@@ -433,9 +433,11 @@ Tcl_FinalizeNotifier(
-                           "unable to write q to triggerPipe");
-               }
-               close(triggerPipe);
-+              pthread_mutex_lock(&notifierMutex);
-               while(triggerPipe != -1) {
-                   pthread_cond_wait(&notifierCV, &notifierMutex);
-               }
-+              pthread_mutex_unlock(&notifierMutex);
-               if (notifierThreadRunning) {
-                   int result = pthread_join((pthread_t) notifierThread, NULL);
- 

Reply via email to