diff options
author | Yann Ylavic <ylavic@apache.org> | 2020-05-28 22:41:20 +0200 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2020-05-28 22:41:20 +0200 |
commit | b41fe7c4bb22d060906da61c70bc61277de6dcd7 (patch) | |
tree | 49c5a8f13918eefffc5340cee86664ea86d9db9e /.gdbinit | |
parent | .gdbinit: fix copy/paste dup [skip ci] (diff) | |
download | apache2-b41fe7c4bb22d060906da61c70bc61277de6dcd7.tar.xz apache2-b41fe7c4bb22d060906da61c70bc61277de6dcd7.zip |
.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-- | .gdbinit | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |