summaryrefslogtreecommitdiffstats
path: root/generic/tclThreadAlloc.c
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2004-04-30 20:06:35 (GMT)
committerdgp <dgp@noemail.net>2004-04-30 20:06:35 (GMT)
commite56151282ae7f2006b5f6bb9352d4fcedd94eae2 (patch)
treeae2a40772b982fe11a4e2c70f86601c465020d24 /generic/tclThreadAlloc.c
parent4b0c72d13b242fd0fb18bf0ded020e349501b75d (diff)
downloadtcl-e56151282ae7f2006b5f6bb9352d4fcedd94eae2.zip
tcl-e56151282ae7f2006b5f6bb9352d4fcedd94eae2.tar.gz
tcl-e56151282ae7f2006b5f6bb9352d4fcedd94eae2.tar.bz2
* generic/tclInt.h: Replaced Kevin Kenny's temporary
* generic/tclThreadAlloc.c: fix for Bug 945447 with a cleaner, more permanent replacement. FossilOrigin-Name: 6e87dc0c7853033abaf9b8146982671cb2b6d5f2
Diffstat (limited to 'generic/tclThreadAlloc.c')
-rwxr-xr-xgeneric/tclThreadAlloc.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/generic/tclThreadAlloc.c b/generic/tclThreadAlloc.c
index 4f8905f..70a7980 100755
--- a/generic/tclThreadAlloc.c
+++ b/generic/tclThreadAlloc.c
@@ -11,21 +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.10 2004/04/30 17:45:31 kennykb Exp $
+ * RCS: @(#) $Id: tclThreadAlloc.c,v 1.11 2004/04/30 20:06:44 dgp Exp $
*/
#if defined(TCL_THREADS) && defined(USE_THREAD_ALLOC)
#include "tclInt.h"
-#ifdef WIN32
-#include "tclWinInt.h"
-#else
-extern Tcl_Mutex *TclpNewAllocMutex(void);
-extern void *TclpGetAllocCache(void);
-extern void TclpSetAllocCache(void *);
-#endif
-
/*
* If range checking is enabled, an additional byte will be allocated
* to store the magic number at the end of the requested memory.