diff options
| author | sebres <sebres@users.sourceforge.net> | 2014-04-22 13:25:41 (GMT) |
|---|---|---|
| committer | sebres <sebres@users.sourceforge.net> | 2014-04-22 13:25:41 (GMT) |
| commit | fea67060de9dfd5bfbd323703c49af707a130926 (patch) | |
| tree | 8c753402e4e14c2e9ce0d04c5bb6ef9ed65b565f /generic/tclThread.c | |
| parent | 473f2fb8dd64dfcd8320aac7f260d55396842f7b (diff) | |
| download | tcl-fea67060de9dfd5bfbd323703c49af707a130926.zip tcl-fea67060de9dfd5bfbd323703c49af707a130926.tar.gz tcl-fea67060de9dfd5bfbd323703c49af707a130926.tar.bz2 | |
Memory leak after thread exit, fixed (alloc cache released by exit), belong to ticket [3493120]
Moved over to branch bug-3493120. This is not ready
for the core-8-5-branch. Segfaults all over the place
in a thread-enabled build on a CentOS system.
Diffstat (limited to 'generic/tclThread.c')
| -rw-r--r-- | generic/tclThread.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/generic/tclThread.c b/generic/tclThread.c index 8384107..d6b5bcb 100644 --- a/generic/tclThread.c +++ b/generic/tclThread.c @@ -338,8 +338,9 @@ Tcl_ConditionFinalize( * * TclFinalizeThreadData -- * - * This function cleans up the thread-local storage. This is called once - * for each thread. + * This function cleans up the thread-local storage. Secondary, it cleans + * thread alloc cache. + * This is called once for each thread before thread exits. * * Results: * None. @@ -354,6 +355,9 @@ void TclFinalizeThreadData(void) { TclpFinalizeThreadDataThread(); +#if defined(TCL_THREADS) && defined(USE_THREAD_ALLOC) + TclFinalizeThreadAllocThread(); +#endif } /* |
