summaryrefslogtreecommitdiffstats
path: root/generic/tclLoad.c
diff options
context:
space:
mode:
authorstanton <stanton>1998-12-10 21:21:26 (GMT)
committerstanton <stanton>1998-12-10 21:21:26 (GMT)
commitb506f6289f0b2d01d9891ece0a217f4cd45224d8 (patch)
tree8ff7d5150e8620ca2d808b8194b8075e00e9e7fc /generic/tclLoad.c
parent18da38f7b3f2484255769f506b0fc0cc76508baf (diff)
downloadtcl-b506f6289f0b2d01d9891ece0a217f4cd45224d8.zip
tcl-b506f6289f0b2d01d9891ece0a217f4cd45224d8.tar.gz
tcl-b506f6289f0b2d01d9891ece0a217f4cd45224d8.tar.bz2
* Fixed lots of files that used TCL_THREAD instead of TCL_THREADS.
* generic/tclEncoding.c (Tcl_FreeEncoding): Moved most of the code into a static FreeEncoding routine that does not grab the encodingMutex to avoid deadlocks/races when called from other routines that already have the mutex.
Diffstat (limited to 'generic/tclLoad.c')
-rw-r--r--generic/tclLoad.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclLoad.c b/generic/tclLoad.c
index 5678976..b11b74e 100644
--- a/generic/tclLoad.c
+++ b/generic/tclLoad.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: tclLoad.c,v 1.1.2.2 1998/09/24 23:58:55 stanton Exp $
+ * RCS: @(#) $Id: tclLoad.c,v 1.1.2.3 1998/12/10 21:21:49 stanton Exp $
*/
#include "tclInt.h"
@@ -53,7 +53,7 @@ typedef struct LoadedPackage {
} LoadedPackage;
/*
- * TCL_THREAD
+ * TCL_THREADS
* There is a global list of packages that is anchored at firstPackagePtr.
* Access to this list is governed by a mutex.
*/