diff options
| author | dgp@users.sourceforge.net <dgp> | 2001-12-28 23:36:31 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2001-12-28 23:36:31 (GMT) |
| commit | 89eede7e9e96c9bdd1c71b879a61a68b75bfbd30 (patch) | |
| tree | 3e6e8fb2ceb72322d141f778af9e66bd22b95fb0 /generic/tclBinary.c | |
| parent | 0129fec69857d3cb30bcd4876aebdb5cf42d566b (diff) | |
| download | tcl-89eede7e9e96c9bdd1c71b879a61a68b75bfbd30.zip tcl-89eede7e9e96c9bdd1c71b879a61a68b75bfbd30.tar.gz tcl-89eede7e9e96c9bdd1c71b879a61a68b75bfbd30.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. |
