diff options
| author | zv@archiware.com <vasiljevic> | 2005-04-07 11:24:13 (GMT) |
|---|---|---|
| committer | zv@archiware.com <vasiljevic> | 2005-04-07 11:24:13 (GMT) |
| commit | c7e5b21c5ec47a9b8929a70c64d37f4b8a2ae53d (patch) | |
| tree | 7497ec3ecaf69f8a77624b71a5d3f3830aeca23a | |
| parent | c602968190a2e93076fe9eb14664e4f6be83a4b7 (diff) | |
| download | tcl-c7e5b21c5ec47a9b8929a70c64d37f4b8a2ae53d.zip tcl-c7e5b21c5ec47a9b8929a70c64d37f4b8a2ae53d.tar.gz tcl-c7e5b21c5ec47a9b8929a70c64d37f4b8a2ae53d.tar.bz2 | |
Added prototypes for TclpFreeAllocCache() and TclFreeAllocCache().
Part of fixing the Tcl Bug #1178445.
| -rw-r--r-- | generic/tclInt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 81d1304..300a14c 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.8 2005/01/27 22:53:33 andreas_kupries Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.118.2.9 2005/04/07 11:24:13 vasiljevic Exp $ */ #ifndef _TCLINT @@ -2136,8 +2136,10 @@ 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 *)); # define TclAllocObjStorage(objPtr) \ |
