summaryrefslogtreecommitdiffstats
path: root/generic/tclEvent.c
diff options
context:
space:
mode:
authorferrieux <ferrieux@noemail.net>2009-07-22 08:41:58 (GMT)
committerferrieux <ferrieux@noemail.net>2009-07-22 08:41:58 (GMT)
commit289720fce994d7ba4633f658d395807f6740f42e (patch)
tree5fbbfdf11fe30a783e49463ffe7269a92448d86b /generic/tclEvent.c
parent2e9f7f0555bdeb580899a23d1bb9bf3d30a61da8 (diff)
downloadtcl-289720fce994d7ba4633f658d395807f6740f42e.zip
tcl-289720fce994d7ba4633f658d395807f6740f42e.tar.gz
tcl-289720fce994d7ba4633f658d395807f6740f42e.tar.bz2
Refined the 20090617 patch on [exit] streamlining, so that it now correctly calls thread exit handlers for the calling thread, which includes <Destroy> bindings in Tk [Bug 2001201 again].
FossilOrigin-Name: 4f519b267a0efe5e4d66b2c1b3314ab1082243ca
Diffstat (limited to 'generic/tclEvent.c')
-rw-r--r--generic/tclEvent.c19
1 files changed, 14 insertions, 5 deletions
diff --git a/generic/tclEvent.c b/generic/tclEvent.c
index 6c55ef0..4f67608 100644
--- a/generic/tclEvent.c
+++ b/generic/tclEvent.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclEvent.c,v 1.90 2009/06/18 09:41:26 dkf Exp $
+ * RCS: @(#) $Id: tclEvent.c,v 1.91 2009/07/22 08:41:59 ferrieux Exp $
*/
#include "tclInt.h"
@@ -952,11 +952,20 @@ Tcl_Exit(
InvokeExitHandlers();
/*
- * This triggers a flush of the Tcl_Channels that may have
- * data enqueued.
+ * Ensure the thread-specific data is initialised as it is used in
+ * Tcl_FinalizeThread()
*/
- TclFinalizeIOSubsystem();
-
+
+ (void) TCL_TSD_INIT(&dataKey);
+
+ /*
+ * Now finalize the calling thread only (others are not safely
+ * reachable). Among other things, this triggers a flush of the
+ * Tcl_Channels that may have data enqueued.
+ */
+
+ Tcl_FinalizeThread();
+
TclpExit(status);
Tcl_Panic("OS exit failed!");
}