diff options
author | Michal Schmidt <mschmidt@redhat.com> | 2014-10-15 01:31:23 +0200 |
---|---|---|
committer | Michal Schmidt <mschmidt@redhat.com> | 2014-10-30 19:50:51 +0100 |
commit | 2ea8c08306c7e33f8217a878cf990fc491c9432c (patch) | |
tree | 51a9f73447006595887a5bb5f0ef0091551b59de /Makefile.am | |
parent | 89439d4fc0d29f04ac68432fd06ab84bc4e36e20 (diff) |
tools: add gdb command to dump hashmap information
$ sudo gdb -p 1
...
(gdb) source gdb-sd_dump_hashmaps.py
(gdb) sd_dump_hashmaps
... lists allocated hashmaps ...
(gdb) sd_dump_hashmaps 1
... lists allocated hashmaps, their DIB histograms and contiguous
blocks statistics ...
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 946e46f2d5..3b273d4923 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6247,3 +6247,6 @@ print-%: git-contrib: @git shortlog -s `git describe --abbrev=0`.. | cut -c8- | awk '{ print $$0 "," }' | sort -u + +EXTRA_DIST += \ + tools/gdb-sd_dump_hashmaps.py |