diff options
author | Kevin B Kenny <kennykb@acm.org> | 2004-04-30 17:45:18 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2004-04-30 17:45:18 (GMT) |
commit | 736312a51b0efbaf7f69c6b7b7c17a16bc6ab373 (patch) | |
tree | 693a34308044d85ae8bf2f462795e1ff122d0306 /generic/tclThreadAlloc.c | |
parent | 655ca7dde8ded6685ce09cb17186766b7f0352b5 (diff) | |
download | tcl-736312a51b0efbaf7f69c6b7b7c17a16bc6ab373.zip tcl-736312a51b0efbaf7f69c6b7b7c17a16bc6ab373.tar.gz tcl-736312a51b0efbaf7f69c6b7b7c17a16bc6ab373.tar.bz2 |
* generic/tclThreadAlloc.c: Added a temporary (or so I hope!)
inclusion of "tclWinInt.h" to avoid problems when compiling
on Win32-VC++ with --enable-threads. [Bug 945447]
Diffstat (limited to 'generic/tclThreadAlloc.c')
-rwxr-xr-x | generic/tclThreadAlloc.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/generic/tclThreadAlloc.c b/generic/tclThreadAlloc.c index c8498dd..4f8905f 100755 --- a/generic/tclThreadAlloc.c +++ b/generic/tclThreadAlloc.c @@ -11,14 +11,16 @@ * 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.9 2004/04/06 22:25:55 dgp Exp $ + * RCS: @(#) $Id: tclThreadAlloc.c,v 1.10 2004/04/30 17:45:31 kennykb Exp $ */ #if defined(TCL_THREADS) && defined(USE_THREAD_ALLOC) #include "tclInt.h" -#ifndef WIN32 +#ifdef WIN32 +#include "tclWinInt.h" +#else extern Tcl_Mutex *TclpNewAllocMutex(void); extern void *TclpGetAllocCache(void); extern void TclpSetAllocCache(void *); |