summaryrefslogtreecommitdiffstats
path: root/generic/tclExecute.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2015-12-15 10:33:09 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2015-12-15 10:33:09 (GMT)
commitdf25840e9998ccae184ac0e650ea1857d1da6634 (patch)
tree51cc000ee2e6f9906b62e50a777252dfdfae82ad /generic/tclExecute.c
parentf1d71456ca0ed0f306f2fdfbaf3668e506f41aa9 (diff)
downloadtcl-df25840e9998ccae184ac0e650ea1857d1da6634.zip
tcl-df25840e9998ccae184ac0e650ea1857d1da6634.tar.gz
tcl-df25840e9998ccae184ac0e650ea1857d1da6634.tar.bz2
Eliminate AuxDataType table: since this table only contains 4 constant entries, it is overkill to use a hash table for that.
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r--generic/tclExecute.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index b10af65..dacc9e2 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.c
@@ -927,7 +927,6 @@ TclCreateExecEnv(
Tcl_MutexLock(&execMutex);
if (!execInitialized) {
- TclInitAuxDataTypeTable();
InitByteCodeExecution(interp);
execInitialized = 1;
}
@@ -1026,7 +1025,6 @@ TclFinalizeExecution(void)
Tcl_MutexLock(&execMutex);
execInitialized = 0;
Tcl_MutexUnlock(&execMutex);
- TclFinalizeAuxDataTypeTable();
}
/*