diff options
author | dgp <dgp@users.sourceforge.net> | 2007-05-10 21:32:15 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-05-10 21:32:15 (GMT) |
commit | 61db605bbda1d3cf0d073bdd573330789b6fc929 (patch) | |
tree | c01f820ef1baa6c3d4f7262de874eb4a3db1e8ce | |
parent | 9ed1dc8ae2008e5197622386a9b11e3f1c21bf54 (diff) | |
download | tcl-61db605bbda1d3cf0d073bdd573330789b6fc929.zip tcl-61db605bbda1d3cf0d073bdd573330789b6fc929.tar.gz tcl-61db605bbda1d3cf0d073bdd573330789b6fc929.tar.bz2 |
* generic/tclInt.h: TclFinalizeThreadAlloc() is always defined,
so make sure it is also always declared.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | generic/tclInt.h | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,8 @@ 2007-05-10 Don Porter <dgp@users.sourceforge.net> + * generic/tclInt.h: TclFinalizeThreadAlloc() is always defined, + so make sure it is also always declared. + [Tcl Bug 1706140] * generic/tclCmdMZ.c (Trace*Proc): Update Tcl_VarTraceProcs so diff --git a/generic/tclInt.h b/generic/tclInt.h index c1a6785..a5f3896 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.118.2.27 2007/04/21 19:52:14 kennykb Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.118.2.28 2007/05/10 21:32:17 dgp Exp $ */ #ifndef _TCLINT @@ -1855,6 +1855,7 @@ EXTERN void TclFinalizeNotifier _ANSI_ARGS_((void)); EXTERN void TclFinalizeObjects _ANSI_ARGS_((void)); EXTERN void TclFinalizePreserve _ANSI_ARGS_((void)); EXTERN void TclFinalizeSynchronization _ANSI_ARGS_((void)); +EXTERN void TclFinalizeThreadAlloc _ANSI_ARGS_((void)); EXTERN void TclFinalizeThreadData _ANSI_ARGS_((void)); EXTERN int TclGetEncodingFromObj _ANSI_ARGS_((Tcl_Interp *interp, Tcl_Obj *objPtr, Tcl_Encoding *encodingPtr)); @@ -2382,7 +2383,6 @@ EXTERN Tcl_Obj *TclPtrIncrVar _ANSI_ARGS_((Tcl_Interp *interp, Var *varPtr, EXTERN Tcl_Obj *TclThreadAllocObj _ANSI_ARGS_((void)); EXTERN void TclThreadFreeObj _ANSI_ARGS_((Tcl_Obj *)); EXTERN void TclFreeAllocCache _ANSI_ARGS_((void *)); -EXTERN void TclFinalizeThreadAlloc _ANSI_ARGS_((void)); EXTERN void TclpFreeAllocMutex _ANSI_ARGS_((Tcl_Mutex* mutex)); EXTERN void TclpFreeAllocCache _ANSI_ARGS_((void *)); |