summaryrefslogtreecommitdiffstats
path: root/generic/tclThreadAlloc.c
diff options
context:
space:
mode:
authorpatthoyts <patthoyts@noemail.net>2004-07-25 21:38:07 (GMT)
committerpatthoyts <patthoyts@noemail.net>2004-07-25 21:38:07 (GMT)
commitab62dfc9c936b563e105dfe887116cde4114a36f (patch)
tree57eb3b5a807bc1d0c93037e80e127c251ac6e3ca /generic/tclThreadAlloc.c
parentb1ad9d506be867607e215f57fb99cfdefa15fe3e (diff)
downloadtcl-ab62dfc9c936b563e105dfe887116cde4114a36f.zip
tcl-ab62dfc9c936b563e105dfe887116cde4114a36f.tar.gz
tcl-ab62dfc9c936b563e105dfe887116cde4114a36f.tar.bz2
* generic/tclThreadAlloc.c: Moved the tclInt.h include to provide
Tcl_Panic which is now required for non-threaded build. FossilOrigin-Name: 68225ba78960423a23be428e5cd17a213f456c3d
Diffstat (limited to 'generic/tclThreadAlloc.c')
-rwxr-xr-xgeneric/tclThreadAlloc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclThreadAlloc.c b/generic/tclThreadAlloc.c
index 1bd51e6..d14ed87 100755
--- a/generic/tclThreadAlloc.c
+++ b/generic/tclThreadAlloc.c
@@ -11,13 +11,13 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclThreadAlloc.c,v 1.4.2.3 2004/07/21 01:30:57 hobbs Exp $
+ * RCS: @(#) $Id: tclThreadAlloc.c,v 1.4.2.4 2004/07/25 21:38:09 patthoyts Exp $
*/
-#if defined(TCL_THREADS) && defined(USE_THREAD_ALLOC)
-
#include "tclInt.h"
+#if defined(TCL_THREADS) && defined(USE_THREAD_ALLOC)
+
#ifdef WIN32
#include "tclWinInt.h"
#else
@@ -982,7 +982,7 @@ TclFinalizeThreadAlloc()
listLockPtr = NULL;
}
-#else
+#else /* ! defined(TCL_THREADS) && ! defined(USE_THREAD_ALLOC) */
/*
*----------------------------------------------------------------------