Path to this page:
./
devel/lmdbg,
Lightweight Modular malloc Debugger
Branch: CURRENT,
Version: 1.1.0,
Package name: lmdbg-1.1.0,
Maintainer: cheusovLMDBG is a collection of small tools for collecting and analyzing logs of
malloc/realloc/memalign/free etc. function calls. LMDBG generates full
stacktraces and separates the logging process from analysis, thus allowing
you to analyze application on a per-module basis. Simple but powerful tools
for analisis are also provided.
lmdbg - Meta tool, all in one.
lmdbg-run - Creates malloc/realloc/free/memalign/... logs
lmdbg-sym - Converts addresses to 'file.c:NUM func_name'
lmdbg-leak - Checks for memory leaks
lmdbg-stat - Gathers statistical information about memory allocations
lmdbg-grep - Greps the stackframes
lmdbg-strip - Strips the stackframes
lmdbg-module - Enrichs the stackframes with a module name
lmdbg-sort - Sorts the stackframes by e.g. total allocated bytes,
a number of memory allocations etc.
lmdbg-sysleaks - Filters out system memory leaks e.g. libc's
Required to run:[
devel/libjudy] [
devel/pipestatus] [
lang/runawk]
Required to build:[
devel/mk-configure]
Master sites: (Expand)
SHA1: f3ef21fd687464fe3ee4fb186908a292b9e45af7
RMD160: 5a9436c0022f72039cdcbf3bd31f3720e8556ed0
Filesize: 70.012 KB
Version history: (Expand)
- (2012-09-03) Updated to version: lmdbg-1.1.0
- (2012-01-10) Updated to version: lmdbg-1.0.0
- (2011-12-03) Updated to version: lmdbg-0.17.0
- (2011-07-05) Updated to version: lmdbg-0.16.0nb2
- (2011-05-09) Package added to pkgsrc.se, version lmdbg-0.16.0nb1 (created)
CVS history: (Expand)
| 2012-10-31 12:19:55 by Aleksej Saushev | Files touched by this commit (1460) |
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
|
2012-09-02 20:48:19 by Aleksey Cheusov | Files touched by this commit (3) |  |
Log message:
Update to 1.1.0
Fix in regression tests. Now "make test" exits with non-zero status
if something fails.
lmdbg-run:
- Zero addresses are removed from stacktraces generated by glibc's
backtrace(3). This fixes asserts in lmdbg-stat(1).
- Double "0x" in "info section" were fixed (seen on NetBSD).
- backtrace(3) from libexecinfo is used instead of builtin
implementation if the library and execinfo.h are available
(FreeBSD, NetBSD).
lmdbg-sym:
- Fixes. Sometimes addresses were converted to symbols
incorrectly. The problem was seen on modern Linux distros with
recent gdb(1).
lmdbg-stat:
- Now incompletly read lines (having no LF in the end) are
ignored. This fixes crashes and therefore empty output or
lmdbg(1) when analysed program is killed.
- Alternative implementation written in awk was removed.
Build infrastructure was converted to 2-level dirs.
This requires mk-configure>=0.23.0 for build.
Minor clean-ups in man pages and Makefiles.
|
| 2012-03-09 20:10:04 by Aleksey Cheusov | Files touched by this commit (1) |
Log message:
clean-ups (adapted for recent mk-configure)
|
2012-01-09 20:47:36 by Aleksey Cheusov | Files touched by this commit (3) |  |
Log message:
Update to lmdbg-1.0.0
libstacktrace:
Remove signal handlers and other garbage.
All we need is __builtin_frame_address and __builtin_return_address
builtins and nothing else.
Documentation files have been moved to subproject "doc".
Run "mkcmake install-doc" for installing it (or change SUBPRJ_DFLT).
Only backtrace(3) in libc is accepted as an external implementation
of stacktrace(3). This may fix build failure on FreeBSD with
installed libexeinfo.
|
2011-12-02 23:45:47 by Aleksey Cheusov | Files touched by this commit (3) |  |
Log message:
Update to 0.17.0
Long options have been removed from all programs.
Use standard single-letter POSIX-compatible options.
lmdbg-sym:
- Doesn't accept progname as an argument anymore.
Use -P option instead.
- option --with-so was replaced with -s.
SORRY FOR INCOMPATIBILITIES WITH PREVIOUS RELEASES.
----------------------------------
lmdbg:
- -M option was added. lmdbg(1) is now a meta tools which is able
to not only collecting memory leaks. See the manual page for
details.
- -n option was added
- -T and -B options were added
- Regression tests were added for -M
A lot of improvements and grammar fixes in manual pages.
Thanks to Nikolai Krot for this.
lmdbg-stat, tests/test.sh:
- Fixes for Solaris
lmdbg-run:
- options -T and -B were added to lmdbg-run.
- option -n was added. It disables logging on startup.
Sending SIGUSR1 signal to the process enables it.
-f option was added, synonym for -p.
lmdbg-grep.1:
- documentation for "bytes" variable
If set, LMDBG_MODULES_AWK and LMDBG_STRIP_AWK environment variables
are used as a path to AWK interpreter by "lmdbg-modules" and
"lmdbg-strip" programs respectively.
More regression tests
|
| 2011-11-26 11:18:49 by Aleksey Cheusov | Files touched by this commit (1) |
Log message:
clang was added to a list of supported compilers
minor code clean-ups
|
| 2011-10-19 17:04:37 by Aleksey Cheusov | Files touched by this commit (1) |
Log message:
Adding MANDIR to MAKE_ENV is not needed anymore
|
2011-10-09 12:02:48 by Aleksey Cheusov | Files touched by this commit (43) |  |
Log message:
Update my email
|