summaryrefslogtreecommitdiff
path: root/.gdbinit
diff options
context:
space:
mode:
authorRuediger Pluem <rpluem@apache.org>2019-09-09 06:53:29 +0000
committerRuediger Pluem <rpluem@apache.org>2019-09-09 06:53:29 +0000
commit28ef8426cf8e54aa749f1cd0d79d6afb6e36b65b (patch)
tree15541f75af15a299aa5ef6f00d75fc50cfca50ae /.gdbinit
parent1a83006af39c9b0cbbd854f790e890371950b81d (diff)
downloadhttpd-28ef8426cf8e54aa749f1cd0d79d6afb6e36b65b.tar.gz
Merge r1866078 from trunk:
* Make it obsolete to supply a starting pool Improve dump_all_pools by making it obsolete to supply a starting pool. If the parameter is not supplied ap_pglobal which is a global symbol is used as starting pool. The pool parameter is still accepted and considered for backwards compatibility or if ap_pglobal cannot be resolved. Submitted by: rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1866656 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '.gdbinit')
-rw-r--r--.gdbinit8
1 files changed, 6 insertions, 2 deletions
diff --git a/.gdbinit b/.gdbinit
index 31ebe0a98a..336ea2ba3f 100644
--- a/.gdbinit
+++ b/.gdbinit
@@ -452,14 +452,18 @@ define dump_one_pool
end
define dump_all_pools
- set $root = $arg0
+ if $argc > 0
+ set $root = $arg0
+ else
+ set $root = ap_pglobal
+ end
while $root->parent
set $root = $root->parent
end
dump_pool_and_children $root
end
document dump_all_pools
- Dump the whole pool hierarchy starting from apr_global_pool. Requires an arbitrary pool as starting parameter.
+ Dump the whole pool hierarchy starting from apr_global_pool. Optionally takes an arbitrary pool as starting parameter.
end
python