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