summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2007-05-09 19:13:43 (GMT)
committerdgp <dgp@noemail.net>2007-05-09 19:13:43 (GMT)
commit78816e034ad2c87e7d2a19fc945490131a794f6b (patch)
tree06b5450eca164b89820689e712946105754f160a
parent0c9d9f5ee2a01d9737096fa3192ff4846508cb95 (diff)
downloadtcl-78816e034ad2c87e7d2a19fc945490131a794f6b.zip
tcl-78816e034ad2c87e7d2a19fc945490131a794f6b.tar.gz
tcl-78816e034ad2c87e7d2a19fc945490131a794f6b.tar.bz2
* generic/tclInt.h: TclFinalizeThreadAlloc() is always defined,
so make sure it is also always declared (with MODULE_SCOPE). FossilOrigin-Name: 867f5c8b95a865335012d7c69452b2251c197772
-rw-r--r--ChangeLog5
-rw-r--r--generic/tclInt.h4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d5175bc..81dd717 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-05-09 Don Porter <dgp@users.sourceforge.net>
+
+ * generic/tclInt.h: TclFinalizeThreadAlloc() is always defined,
+ so make sure it is also always declared (with MODULE_SCOPE).
+
2007-05-09 Daniel Steffen <das@users.sourceforge.net>
* generic/tclInt.h: fix warning when building threaded with -DPURIFY.
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 70c4d80..8a09246 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclInt.h,v 1.308 2007/05/09 12:50:07 das Exp $
+ * RCS: @(#) $Id: tclInt.h,v 1.309 2007/05/09 19:13:46 dgp Exp $
*/
#ifndef _TCLINT
@@ -2278,6 +2278,7 @@ MODULE_SCOPE void TclFinalizeNotifier(void);
MODULE_SCOPE void TclFinalizeObjects(void);
MODULE_SCOPE void TclFinalizePreserve(void);
MODULE_SCOPE void TclFinalizeSynchronization(void);
+MODULE_SCOPE void TclFinalizeThreadAlloc(void);
MODULE_SCOPE void TclFinalizeThreadData(void);
MODULE_SCOPE double TclFloor(mp_int *a);
MODULE_SCOPE void TclFormatNaN(double value, char *buffer);
@@ -3027,7 +3028,6 @@ MODULE_SCOPE Tcl_Mutex *TclpNewAllocMutex(void);
MODULE_SCOPE void TclFreeAllocCache(void *);
MODULE_SCOPE void * TclpGetAllocCache(void);
MODULE_SCOPE void TclpSetAllocCache(void *);
-MODULE_SCOPE void TclFinalizeThreadAlloc(void);
MODULE_SCOPE void TclpFreeAllocMutex(Tcl_Mutex *mutex);
MODULE_SCOPE void TclpFreeAllocCache(void *);