diff options
author | dgp <dgp@users.sourceforge.net> | 2001-12-10 15:50:46 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-12-10 15:50:46 (GMT) |
commit | 2509c4647a862758676661f35e5e16d3e08ca162 (patch) | |
tree | 14f39e6f616fa7c6e1322285b7513c0ea2df1327 /doc/TCL_MEM_DEBUG.3 | |
parent | 22f99d42b260461aacb728ca3326315bd4eb2041 (diff) | |
download | tcl-2509c4647a862758676661f35e5e16d3e08ca162.zip tcl-2509c4647a862758676661f35e5e16d3e08ca162.tar.gz tcl-2509c4647a862758676661f35e5e16d3e08ca162.tar.bz2 |
* Several typo and formatting corrections discovered
during conversion to TMML. Thanks to Joe English. [Patch 490514]
Diffstat (limited to 'doc/TCL_MEM_DEBUG.3')
-rw-r--r-- | doc/TCL_MEM_DEBUG.3 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/TCL_MEM_DEBUG.3 b/doc/TCL_MEM_DEBUG.3 index 9092661..8d5646b 100644 --- a/doc/TCL_MEM_DEBUG.3 +++ b/doc/TCL_MEM_DEBUG.3 @@ -3,7 +3,7 @@ '\" Copyright (c) 2000 by Scriptics Corporation. '\" All rights reserved. '\" -'\" RCS: @(#) $Id: TCL_MEM_DEBUG.3,v 1.3 2001/09/27 22:25:45 dgp Exp $ +'\" RCS: @(#) $Id: TCL_MEM_DEBUG.3,v 1.4 2001/12/10 15:50:46 dgp Exp $ '\" .so man.macros .TH TCL_MEM_DEBUG 3 8.1 Tcl "Tcl Library Procedures" @@ -18,7 +18,7 @@ includes C and Tcl functions which can aid with debugging memory leaks, memory allocation overruns, and other memory related errors. -.SH ENABLING MEMORY DEBUGGING +.SH "ENABLING MEMORY DEBUGGING" .PP To enable memory debugging, Tcl should be recompiled from scratch with \fBTCL_MEM_DEBUG\fR defined. This will also compile in a non-stub @@ -34,7 +34,7 @@ functions \fBTcl_ValidateAllMemory\fR, and \fBTcl_DumpActiveMemory\fR, and the Tcl \fBmemory\fR command can be used to validate and examine memory usage. -.SH GUARD ZONES +.SH "GUARD ZONES" .PP When memory debugging is enabled, whenever a call to \fBckalloc\fR is made, slightly more memory than requested is allocated so the memory debugging @@ -55,7 +55,7 @@ This allows you to detect the common sorts of one-off problems, where not enough space was allocated to contain the data written, for example. -.SH DEBUGGING DIFFICULT MEMORY CORRUPTION PROBLEMS +.SH "DEBUGGING DIFFICULT MEMORY CORRUPTION PROBLEMS" .PP Normally, Tcl compiled with memory debugging enabled will make it easy to isolate a corruption problem. Turning on memory validation with |