From b1c6f1ed60dd86412f73409643e28320283c8cc6 Mon Sep 17 00:00:00 2001 From: dkf Date: Thu, 18 Jun 2009 09:42:40 +0000 Subject: regen --- generic/tclIntDecls.h | 12 +++++++++++- generic/tclStubInit.c | 3 ++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/generic/tclIntDecls.h b/generic/tclIntDecls.h index a432255..bdcdf29 100644 --- a/generic/tclIntDecls.h +++ b/generic/tclIntDecls.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIntDecls.h,v 1.132 2009/02/27 23:03:41 nijtmans Exp $ + * RCS: @(#) $Id: tclIntDecls.h,v 1.133 2009/06/18 09:42:40 dkf Exp $ */ #ifndef _TCLINTDECLS @@ -1025,6 +1025,11 @@ EXTERN int TclNREvalObjv (Tcl_Interp * interp, int objc, Tcl_Obj *const objv[], int flags, Command * cmdPtr); #endif +#ifndef TclDbDumpActiveObjects_TCL_DECLARED +#define TclDbDumpActiveObjects_TCL_DECLARED +/* 243 */ +EXTERN void TclDbDumpActiveObjects (FILE * outFile); +#endif typedef struct TclIntStubs { int magic; @@ -1273,6 +1278,7 @@ typedef struct TclIntStubs { int (*tclNRRunCallbacks) (Tcl_Interp * interp, int result, struct TEOV_callback * rootPtr, int tebcCall); /* 240 */ int (*tclNREvalObjEx) (Tcl_Interp * interp, Tcl_Obj * objPtr, int flags, const CmdFrame * invoker, int word); /* 241 */ int (*tclNREvalObjv) (Tcl_Interp * interp, int objc, Tcl_Obj *const objv[], int flags, Command * cmdPtr); /* 242 */ + void (*tclDbDumpActiveObjects) (FILE * outFile); /* 243 */ } TclIntStubs; #if defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS) @@ -1975,6 +1981,10 @@ extern const TclIntStubs *tclIntStubsPtr; #define TclNREvalObjv \ (tclIntStubsPtr->tclNREvalObjv) /* 242 */ #endif +#ifndef TclDbDumpActiveObjects +#define TclDbDumpActiveObjects \ + (tclIntStubsPtr->tclDbDumpActiveObjects) /* 243 */ +#endif #endif /* defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS) */ diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index fb032ea..a5a627d 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStubInit.c,v 1.180 2009/04/10 18:02:36 das Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.181 2009/06/18 09:42:40 dkf Exp $ */ #include "tclInt.h" @@ -288,6 +288,7 @@ static const TclIntStubs tclIntStubs = { TclNRRunCallbacks, /* 240 */ TclNREvalObjEx, /* 241 */ TclNREvalObjv, /* 242 */ + TclDbDumpActiveObjects, /* 243 */ }; static const TclIntPlatStubs tclIntPlatStubs = { -- cgit v0.12