diff options
author | dgp <dgp@users.sourceforge.net> | 2012-01-26 16:26:38 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2012-01-26 16:26:38 (GMT) |
commit | 108e8a50f4cecebcceafb5aa428bc279fc726260 (patch) | |
tree | 5a5647f374f8f81581dbc9253cf690759a5b0ef4 | |
parent | 60eb1e2cb5c0b229f7accc83107f616fc504f38a (diff) | |
download | tcl-108e8a50f4cecebcceafb5aa428bc279fc726260.zip tcl-108e8a50f4cecebcceafb5aa428bc279fc726260.tar.gz tcl-108e8a50f4cecebcceafb5aa428bc279fc726260.tar.bz2 |
yank back debugging codebug_3475569
-rw-r--r-- | generic/tclObj.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c index a30ba6e..5c17df2 100644 --- a/generic/tclObj.c +++ b/generic/tclObj.c @@ -384,9 +384,6 @@ typedef struct ResolvedCmdName { void TclInitObjSubsystem(void) { - ObjInitDeletionContext(context); - ObjDeletionLock(context); - Tcl_MutexLock(&tableMutex); typeTableInitialized = 1; Tcl_InitHashTable(&typeTable, TCL_STRING_KEYS); @@ -488,9 +485,6 @@ TclFinalizeThreadObjects(void) void TclFinalizeObjects(void) { - ObjInitDeletionContext(context); - ObjDeletionUnlock(context); - Tcl_MutexLock(&tableMutex); if (typeTableInitialized) { Tcl_DeleteHashTable(&typeTable); |