summaryrefslogtreecommitdiffstats
path: root/generic/tclThreadStorage.c
diff options
context:
space:
mode:
authornijtmans <nijtmans@noemail.net>2009-12-21 23:25:38 (GMT)
committernijtmans <nijtmans@noemail.net>2009-12-21 23:25:38 (GMT)
commit066016b2e1d0a5ac7832bd0be1b00e33e0b81b1d (patch)
tree86d9a8cc06d969564b99b6d5ed25975042f9300a /generic/tclThreadStorage.c
parentcde6ace493c3bf9042b9f20bea8c034591870a4b (diff)
downloadtcl-066016b2e1d0a5ac7832bd0be1b00e33e0b81b1d.zip
tcl-066016b2e1d0a5ac7832bd0be1b00e33e0b81b1d.tar.gz
tcl-066016b2e1d0a5ac7832bd0be1b00e33e0b81b1d.tar.bz2
Various CYGWIN-related fixes. In the win32 configure script, CYGWIN is still not enabled yet, but at least it is a step in the right direction.
FossilOrigin-Name: dca4a9980ea1e6abbb78a199f0fbf597beb38138
Diffstat (limited to 'generic/tclThreadStorage.c')
-rw-r--r--generic/tclThreadStorage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclThreadStorage.c b/generic/tclThreadStorage.c
index 1a0a89d..ea2eeb1 100644
--- a/generic/tclThreadStorage.c
+++ b/generic/tclThreadStorage.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclThreadStorage.c,v 1.20 2009/03/16 00:43:09 mistachkin Exp $
+ * RCS: @(#) $Id: tclThreadStorage.c,v 1.21 2009/12/21 23:25:40 nijtmans Exp $
*/
#include "tclInt.h"
@@ -43,7 +43,7 @@ static struct TSDMaster {
* increasing value. */
Tcl_Mutex mutex; /* Protection for the rest of this structure,
* which holds per-process data. */
-} tsdMaster = { NULL, 0 };
+} tsdMaster = { NULL, 0, NULL };
/*
* The type of the data held per thread in a system TSD.