mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
989772c9ac
had both lines: Author: ... WWW: .... So standardize on that, and move them to the end of the file when necessary. Also fix some more whitespace, and remove more "signature tags" of varying forms, like -- name, etc. s/AUTHOR/Author/ A few other various formatting issues
12 lines
632 B
Plaintext
12 lines
632 B
Plaintext
LMDBG is a collection of small tools for collecting and analyzing
|
|
the logs of malloc/realloc/memalign/free function calls. Unlike many
|
|
others, LMDBG does not provide any way to detect overruns of the
|
|
boundaries of malloc() memory allocations, as this is not the goal.
|
|
Like most other malloc debuggers, LMDBG allows detecting memory leaks
|
|
and double frees. However, unlike others, LMDBG generates full
|
|
stacktraces and separates the logging process from analysis, thus
|
|
allowing you to analyze an application on a per-module basis.
|
|
|
|
Author: Aleksey Cheusov (cheusov at users.sourceforge.net)
|
|
WWW: http://sourceforge.net/projects/lmdbg
|