summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRuediger Pluem <rpluem@apache.org>2017-09-18 09:23:43 +0200
committerRuediger Pluem <rpluem@apache.org>2017-09-18 09:23:43 +0200
commitcbfd1418734fc61562c850ea3a21be1722610454 (patch)
treed48ef3dd9b8f1b84d0254055a25a48144f09b13a
parentRebuild. (diff)
downloadapache2-cbfd1418734fc61562c850ea3a21be1722610454.tar.xz
apache2-cbfd1418734fc61562c850ea3a21be1722610454.zip
* Correctly dump pools that have no tag
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1808671 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--.gdbinit8
1 files changed, 7 insertions, 1 deletions
diff --git a/.gdbinit b/.gdbinit
index e28763d7d3..0e2d44ecd5 100644
--- a/.gdbinit
+++ b/.gdbinit
@@ -404,7 +404,13 @@ define dump_one_pool
set $done = 1
end
end
- printf "Pool '%s' [%p]: %d/%d free (%d blocks)\n", $p->tag, $p, $free, $size, $nodes
+ printf "Pool '"
+ if $p->tag
+ printf "%s", $p->tag
+ else
+ printf "no tag"
+ end
+ printf "' [%p]: %d/%d free (%d blocks)\n", $p, $free, $size, $nodes
end
# Set sane defaults for common signals: