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/tclInt.h | |
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/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index c989eda..995da48 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -2927,7 +2927,7 @@ MODULE_SCOPE void TclFinalizePreserve(void); MODULE_SCOPE void TclFinalizeSynchronization(void); MODULE_SCOPE void TclFinalizeThreadAlloc(void); MODULE_SCOPE void TclFinalizeThreadAllocThread(void); -MODULE_SCOPE void TclFinalizeThreadData(void); +MODULE_SCOPE void TclFinalizeThreadData(int quick); MODULE_SCOPE void TclFinalizeThreadObjects(void); MODULE_SCOPE double TclFloor(const mp_int *a); MODULE_SCOPE void TclFormatNaN(double value, char *buffer); |