diff options
author | mig <mig> | 2011-03-18 18:06:59 (GMT) |
---|---|---|
committer | mig <mig> | 2011-03-18 18:06:59 (GMT) |
commit | b1edda8715f1cab75c0f12e7ba71c6e8d5e6e0a7 (patch) | |
tree | f1d16cef134dd1a864c7d09fe233225d4b4e405c /generic | |
parent | 8fa8bd69eb29f77d7d92d3f3c79385ee28f87ccc (diff) | |
download | tcl-b1edda8715f1cab75c0f12e7ba71c6e8d5e6e0a7.zip tcl-b1edda8715f1cab75c0f12e7ba71c6e8d5e6e0a7.tar.gz tcl-b1edda8715f1cab75c0f12e7ba71c6e8d5e6e0a7.tar.bz2 |
remove unused mutex
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclObj.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c index 5056c1c..5ee957d 100644 --- a/generic/tclObj.c +++ b/generic/tclObj.c @@ -27,16 +27,6 @@ static int typeTableInitialized = 0; /* 0 means not yet initialized. */ TCL_DECLARE_MUTEX(tableMutex) /* - * The object allocator is single threaded. This mutex is referenced by the - * TclNewObj macro, however, so must be visible. - */ - -#ifdef TCL_THREADS -MODULE_SCOPE Tcl_Mutex tclObjMutex; -Tcl_Mutex tclObjMutex; -#endif - -/* * Pointer to a heap-allocated string of length zero that the Tcl core uses as * the value of an empty string representation for an object. This value is * shared by all new objects allocated by Tcl_NewObj. |