summaryrefslogtreecommitdiff
path: root/.gdbinit
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2020-05-28 20:41:20 +0000
committerYann Ylavic <ylavic@apache.org>2020-05-28 20:41:20 +0000
commitb41fe7c4bb22d060906da61c70bc61277de6dcd7 (patch)
tree49c5a8f13918eefffc5340cee86664ea86d9db9e /.gdbinit
parent2c239a724015fd283e386ccd7713e55641f83180 (diff)
downloadhttpd-b41fe7c4bb22d060906da61c70bc61277de6dcd7.tar.gz
.gdbinit: no child_cleanup_fn for pre_cleanups [skip ci]
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1878249 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '.gdbinit')
-rw-r--r--.gdbinit2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gdbinit b/.gdbinit
index db72565550..a74711e528 100644
--- a/.gdbinit
+++ b/.gdbinit
@@ -539,7 +539,7 @@ class DumpPoolAndChilds (gdb.Command):
while c:
c_num = c_num + 1
dc = c.dereference()
- print("%s pre_cleanup #%.2i: data = %s, plain_cleanup_fn = %s, child_cleanup_fn = %s" % (indent, c_num, dc['data'], dc['plain_cleanup_fn'].dereference(), dc['child_cleanup_fn'].dereference()))
+ print("%s pre_cleanup #%.2i: data = %s, plain_cleanup_fn = %s" % (indent, c_num, dc['data'], dc['plain_cleanup_fn'].dereference()))
c = dc['next']
c = darg['cleanups']
while c: