diff options
author | dgp <dgp@users.sourceforge.net> | 2001-12-28 23:36:31 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-12-28 23:36:31 (GMT) |
commit | d03180362037487dc4c3b1db39fdfef913c6e45a (patch) | |
tree | 3e6e8fb2ceb72322d141f778af9e66bd22b95fb0 /generic/tclBinary.c | |
parent | d279f3a31ab8738baedcb41295db291eb30ab96d (diff) | |
download | tcl-d03180362037487dc4c3b1db39fdfef913c6e45a.zip tcl-d03180362037487dc4c3b1db39fdfef913c6e45a.tar.gz tcl-d03180362037487dc4c3b1db39fdfef913c6e45a.tar.bz2 |
* generic/tclCkalloc.c (MemoryCmd, TclFinalizeMemorySubsystem):
Added the [memory onexit] command, intended to replace [checkmem].
* doc/DumpActiveMemory.3:
* doc/memory.n: Updated documentation for [memory] and related
matters. [Bug 487677]
* mac/tclMacBOAMain.c (Tcl_Main, CheckmemCmd): Removed all the
machinery for the [checkmem] command that is completely duplicated
by code in generic/tclCkalloc.c.
* generic/tclBinary.c:
* generic/tclListObj.c:
* generic/tclObj.c:
* generic/tclStringObj.c: Removed references to [checkmem] in
comments, referencing [memory active] instead, since it is
documented.
Diffstat (limited to 'generic/tclBinary.c')
-rw-r--r-- | generic/tclBinary.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclBinary.c b/generic/tclBinary.c index 54f8ff0..a3505d6 100644 --- a/generic/tclBinary.c +++ b/generic/tclBinary.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclBinary.c,v 1.9 2001/11/29 15:38:40 dkf Exp $ + * RCS: @(#) $Id: tclBinary.c,v 1.10 2001/12/28 23:36:31 dgp Exp $ */ #include <math.h> @@ -180,8 +180,8 @@ Tcl_NewByteArrayObj(bytes, length) * TCL_MEM_DEBUG is defined. It is the same as the Tcl_NewByteArrayObj * above except that it calls Tcl_DbCkalloc directly with the file name * and line number from its caller. This simplifies debugging since then - * the checkmem command will report the correct file name and line number - * when reporting objects that haven't been freed. + * the [memory active] command will report the correct file name and line + * number when reporting objects that haven't been freed. * * When TCL_MEM_DEBUG is not defined, this procedure just returns the * result of calling Tcl_NewByteArrayObj. |