diff options
| author | zv@archiware.com <vasiljevic> | 2003-02-22 09:23:15 (GMT) |
|---|---|---|
| committer | zv@archiware.com <vasiljevic> | 2003-02-22 09:23:15 (GMT) |
| commit | 952edfdbb7c0cd8de1d32469fcbc7c23f9f23614 (patch) | |
| tree | 4ec30866087e1c4de405b39718bc7083807860c1 | |
| parent | 7e3ae560296d0a3df86c1698ed5b437abd52e9f4 (diff) | |
| download | tcl-952edfdbb7c0cd8de1d32469fcbc7c23f9f23614.zip tcl-952edfdbb7c0cd8de1d32469fcbc7c23f9f23614.tar.gz tcl-952edfdbb7c0cd8de1d32469fcbc7c23f9f23614.tar.bz2 | |
Fix for Bug #571002
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | generic/tclEvent.c | 10 |
2 files changed, 12 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2003-02-22 Zoran Vasiljevic <zoran@archiwrae.com> + + * generic/tclEvent.c (Tcl_FinalizeThread): Fix [Bug #571002] + 2003-02-21 Donal K. Fellows <fellowsd@cs.man.ac.uk> * tests/binary.test (binary-44.[34]): diff --git a/generic/tclEvent.c b/generic/tclEvent.c index df1b17a..60b7d7f 100644 --- a/generic/tclEvent.c +++ b/generic/tclEvent.c @@ -11,7 +11,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.27 2003/02/04 17:06:49 vincentdarley Exp $ + * RCS: @(#) $Id: tclEvent.c,v 1.28 2003/02/22 09:23:16 vasiljevic Exp $ */ #include "tclInt.h" @@ -928,13 +928,19 @@ Tcl_FinalizeThread() TclFinalizeIOSubsystem(); TclFinalizeNotifier(); TclFinalizeAsync(); + } /* * Blow away all thread local storage blocks. + * + * Note that Tcl API allows creation of threads which do not use any + * Tcl interp or other Tcl subsytems. Those threads might, however, + * use thread local storage, so we must unconditionally finalize it. + * + * Fix [Bug #571002] */ TclFinalizeThreadData(); - } } /* |
