diff options
author | dgp <dgp@users.sourceforge.net> | 2007-06-22 17:09:15 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-06-22 17:09:15 (GMT) |
commit | 6d2ef9cec6186ac320b6baea1c8c35d20b953061 (patch) | |
tree | 9c19ed0c63b59641ab72595ab8bc69512cc25b1c /generic/tclInt.h | |
parent | abe71b0d5a315b3f7fa348e2318547e5180ef089 (diff) | |
download | tcl-6d2ef9cec6186ac320b6baea1c8c35d20b953061.zip tcl-6d2ef9cec6186ac320b6baea1c8c35d20b953061.tar.gz tcl-6d2ef9cec6186ac320b6baea1c8c35d20b953061.tar.bz2 |
* generic/tclExecute.c: Revised TclStackRealloc() signature to better
* generic/tclInt.h: parallel (and fall back on) Tcl_Realloc.
* generic/tclNamesp.c (TclResetShadowesCmdRefs): Replaced
ckrealloc based allocations with TclStackRealloc allocations.
Diffstat (limited to 'generic/tclInt.h')
-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 8ad0c0b..58d371f 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.319 2007/06/14 21:02:19 msofer Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.320 2007/06/22 17:09:17 dgp Exp $ */ #ifndef _TCLINT @@ -2461,6 +2461,8 @@ MODULE_SCOPE void TclSetBignumIntRep (Tcl_Obj *objPtr, MODULE_SCOPE void TclSetProcessGlobalValue(ProcessGlobalValue *pgvPtr, Tcl_Obj *newValue, Tcl_Encoding encoding); MODULE_SCOPE void TclSignalExitThread(Tcl_ThreadId id, int result); +MODULE_SCOPE void * TclStackRealloc(Tcl_Interp *interp, void *ptr, + int numBytes); MODULE_SCOPE Tcl_Obj * TclStringObjReverse(Tcl_Obj *objPtr); MODULE_SCOPE int TclSubstTokens(Tcl_Interp *interp, Tcl_Token *tokenPtr, int count, int *tokensLeftPtr, int line); |