diff options
author | dgp <dgp@users.sourceforge.net> | 2014-12-17 20:47:58 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2014-12-17 20:47:58 (GMT) |
commit | 200c04016f9228c906561843e82918f62292a1ab (patch) | |
tree | 193346a123c6ef4b3e39952977b53c54d10913cb /generic/tclThread.c | |
parent | 5c538fa1b96b4a1f0bf417d13cd4ce7f359db158 (diff) | |
download | tcl-200c04016f9228c906561843e82918f62292a1ab.zip tcl-200c04016f9228c906561843e82918f62292a1ab.tar.gz tcl-200c04016f9228c906561843e82918f62292a1ab.tar.bz2 |
Rework the *FinalizeThread*() routines so that the quick exit preferencebug_af08e89777
is respected without need to run afoul of encoding finalizations.
tests pass now. All changes are fully internal.
Diffstat (limited to 'generic/tclThread.c')
-rw-r--r-- | generic/tclThread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclThread.c b/generic/tclThread.c index 5ac6a8d..198fa6a 100644 --- a/generic/tclThread.c +++ b/generic/tclThread.c @@ -353,11 +353,11 @@ Tcl_ConditionFinalize( */ void -TclFinalizeThreadData(void) +TclFinalizeThreadData(int quick) { TclFinalizeThreadDataThread(); #if defined(TCL_THREADS) && defined(USE_THREAD_ALLOC) - if ((!TclInExit())||TclFullFinalizationRequested()) { + if (!quick) { /* * Quick exit principle makes it useless to terminate allocators */ |