diff options
author | Yann Ylavic <ylavic@apache.org> | 2020-05-28 22:31:09 +0200 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2020-05-28 22:31:09 +0200 |
commit | 2c239a724015fd283e386ccd7713e55641f83180 (patch) | |
tree | f54cdf033ecb4de0a7735512f54872bb714394c5 /.gdbinit | |
parent | .gdbinit: dump pool (pre_)cleanups [skip ci] (diff) | |
download | apache2-2c239a724015fd283e386ccd7713e55641f83180.tar.xz apache2-2c239a724015fd283e386ccd7713e55641f83180.zip |
.gdbinit: fix copy/paste dup [skip ci]
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1878248 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '.gdbinit')
-rw-r--r-- | .gdbinit | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -539,13 +539,13 @@ 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['plain_cleanup_fn'].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())) c = dc['next'] c = darg['cleanups'] while c: c_num = c_num + 1 dc = c.dereference() - print("%s pst_cleanup #%.2i: data = %s, plain_cleanup_fn = %s, child_cleanup_fn = %s" % (indent, c_num, dc['data'], dc['plain_cleanup_fn'].dereference(), dc['plain_cleanup_fn'].dereference())) + print("%s pst_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())) c = dc['next'] def _dump(self, arg, depth): |