diff options
author | vasiljevic <zv@archiware.com> | 2005-04-16 07:58:45 (GMT) |
---|---|---|
committer | vasiljevic <zv@archiware.com> | 2005-04-16 07:58:45 (GMT) |
commit | c6d40654e2d26347b03f781f94c615c5d5471c34 (patch) | |
tree | d2f1fc73698e9fa8b591012361dcabd17e71b083 | |
parent | 4812bb5b2d273de7fa5c07a1a8450a5dfa5e5803 (diff) | |
download | tcl-c6d40654e2d26347b03f781f94c615c5d5471c34.zip tcl-c6d40654e2d26347b03f781f94c615c5d5471c34.tar.gz tcl-c6d40654e2d26347b03f781f94c615c5d5471c34.tar.bz2 |
Added prototypes for TclpFreeAllocCache() and TclFreeAllocCache().
-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 b8f5871..13a266a 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.221 2005/04/08 20:04:04 dgp Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.222 2005/04/16 07:58:45 vasiljevic Exp $ */ #ifndef _TCLINT @@ -2498,10 +2498,12 @@ MODULE_SCOPE Tcl_Obj * TclPtrIncrWideVar _ANSI_ARGS_((Tcl_Interp *interp, MODULE_SCOPE Tcl_Obj * TclThreadAllocObj _ANSI_ARGS_((void)); MODULE_SCOPE void TclThreadFreeObj _ANSI_ARGS_((Tcl_Obj *)); MODULE_SCOPE Tcl_Mutex *TclpNewAllocMutex _ANSI_ARGS_((void)); +MODULE_SCOPE void TclFreeAllocCache _ANSI_ARGS_((void *)); MODULE_SCOPE void * TclpGetAllocCache _ANSI_ARGS_((void)); MODULE_SCOPE void TclpSetAllocCache _ANSI_ARGS_((void *)); MODULE_SCOPE void TclFinalizeThreadAlloc _ANSI_ARGS_((void)); MODULE_SCOPE void TclpFreeAllocMutex _ANSI_ARGS_((Tcl_Mutex* mutex)); +MODULE_SCOPE void TclpFreeAllocCache _ANSI_ARGS_((void *)); # define TclAllocObjStorage(objPtr) \ (objPtr) = TclThreadAllocObj() |