summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authormig <mig>2011-05-07 19:30:01 (GMT)
committermig <mig>2011-05-07 19:30:01 (GMT)
commita1c89c96202675838c881bc0abd1f1d23925cafd (patch)
tree323c5b8777546033b6b67234fe31763a09cf4f53 /generic
parent05254ef80b53bb81151e5bedb75e686b63dc477a (diff)
parent6e968aa4b347f2486c5a7d0b8f72ba2bd5134495 (diff)
downloadtcl-a1c89c96202675838c881bc0abd1f1d23925cafd.zip
tcl-a1c89c96202675838c881bc0abd1f1d23925cafd.tar.gz
tcl-a1c89c96202675838c881bc0abd1f1d23925cafd.tar.bz2
fix USE_TCLALLOC so that it can be enabled without editing the Makefile
Diffstat (limited to 'generic')
-rw-r--r--generic/tclInt.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 6fb3e57..f2fd0b8 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -3522,6 +3522,13 @@ MODULE_SCOPE void TclpFreeAllocCache(void *);
#else /* not PURIFY or USE_THREAD_ALLOC */
+#if defined(USE_TCLALLOC) && USE_TCLALLOC
+ MODULE_SCOPE void TclFinalizeAllocSubsystem();
+ MODULE_SCOPE void TclInitAlloc();
+#else
+# define USE_TCLALLOC 0
+#endif
+
#ifdef TCL_THREADS
/* declared in tclObj.c */
MODULE_SCOPE Tcl_Mutex tclObjMutex;