diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-01-13 11:17:17 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-01-13 11:17:17 (GMT) |
| commit | 6ecb7aeabf05319bda235ebe45a174137a391447 (patch) | |
| tree | 72c201f217d5ffed28bcd7ae7866f687633204d0 /unix/tclUnixThrd.c | |
| parent | d42b3a00d3058b4e6eaabb24196fc0dbb55088dc (diff) | |
| download | tcl-6ecb7aeabf05319bda235ebe45a174137a391447.zip tcl-6ecb7aeabf05319bda235ebe45a174137a391447.tar.gz tcl-6ecb7aeabf05319bda235ebe45a174137a391447.tar.bz2 | |
Patch from Zoran Vasiljevic, fix for missing proper initialization of the threaded allocator in some situations.
Diffstat (limited to 'unix/tclUnixThrd.c')
| -rw-r--r-- | unix/tclUnixThrd.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/unix/tclUnixThrd.c b/unix/tclUnixThrd.c index 7394545..805599d 100644 --- a/unix/tclUnixThrd.c +++ b/unix/tclUnixThrd.c @@ -711,9 +711,7 @@ TclpFreeAllocMutex( void TclpInitAllocCache(void) { - pthread_mutex_lock(allocLockPtr); pthread_key_create(&key, NULL); - pthread_mutex_unlock(allocLockPtr); } void |
