diff options
author | hobbs <hobbs> | 2002-12-10 00:34:14 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-12-10 00:34:14 (GMT) |
commit | 2946cae4563a26a948d74ef19280df5da4b3ee9f (patch) | |
tree | 264f69b9e86e9b900a58d20d8b25027d4b8227e5 /generic/tclThread.c | |
parent | 9c6a6a68cfa0c1a9f7f1e029607ea8a8926d81eb (diff) | |
download | tcl-2946cae4563a26a948d74ef19280df5da4b3ee9f.zip tcl-2946cae4563a26a948d74ef19280df5da4b3ee9f.tar.gz tcl-2946cae4563a26a948d74ef19280df5da4b3ee9f.tar.bz2 |
* win/tclWinThrd.c (TclpMasterUnlock):
* generic/tclThread.c (TclFinalizeThreadData): TclpMasterUnlock
must exist and be called unconditional of TCL_THREADS. [Bug #651139]
Diffstat (limited to 'generic/tclThread.c')
-rw-r--r-- | generic/tclThread.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/generic/tclThread.c b/generic/tclThread.c index 0f6e2e8..5ddbb91 100644 --- a/generic/tclThread.c +++ b/generic/tclThread.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclThread.c,v 1.5 2000/04/05 00:42:20 welch Exp $ + * RCS: @(#) $Id: tclThread.c,v 1.6 2002/12/10 00:34:15 hobbs Exp $ */ #include "tclInt.h" @@ -417,9 +417,7 @@ TclFinalizeThreadData() } #endif } -#ifdef TCL_THREADS TclpMasterUnlock(); -#endif } /* |