summaryrefslogtreecommitdiffstats
path: root/generic/tclEvent.c
diff options
context:
space:
mode:
authorvasiljevic <zv@archiware.com>2006-03-10 14:04:57 (GMT)
committervasiljevic <zv@archiware.com>2006-03-10 14:04:57 (GMT)
commit02cfcc5c2ba62dba567c1b599fa76e225796ff70 (patch)
tree6070c8a2136956e3dfbbec74f70876688ba26ae8 /generic/tclEvent.c
parent016159504aae4e7bcafa2c3aef5c0a23d55fa308 (diff)
downloadtcl-02cfcc5c2ba62dba567c1b599fa76e225796ff70.zip
tcl-02cfcc5c2ba62dba567c1b599fa76e225796ff70.tar.gz
tcl-02cfcc5c2ba62dba567c1b599fa76e225796ff70.tar.bz2
Cosmetic touches and identation
Diffstat (limited to 'generic/tclEvent.c')
-rw-r--r--generic/tclEvent.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/generic/tclEvent.c b/generic/tclEvent.c
index ba065eb..6456a40 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.28.2.13 2005/08/16 15:23:56 kennykb Exp $
+ * RCS: @(#) $Id: tclEvent.c,v 1.28.2.14 2006/03/10 14:04:57 vasiljevic Exp $
*/
#include "tclInt.h"
@@ -961,9 +961,9 @@ void
Tcl_FinalizeThread()
{
ExitHandler *exitPtr;
- ThreadSpecificData *tsdPtr =
- (ThreadSpecificData *)TclThreadDataKeyGet(&dataKey);
+ ThreadSpecificData *tsdPtr;
+ tsdPtr = (ThreadSpecificData *)TclThreadDataKeyGet(&dataKey);
if (tsdPtr != NULL) {
tsdPtr->inExit = 1;
@@ -994,17 +994,17 @@ Tcl_FinalizeThread()
TclFinalizeAsync();
}
- /*
- * Blow away all thread local storage blocks.
+ /*
+ * 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();
+ TclFinalizeThreadData();
}
/*