mirror of
https://github.com/apache/httpd.git
synced 2025-08-16 17:04:42 +00:00
add dump_filters macro for printing r->{input,output}_filters chain info
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89598 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
13
.gdbinit
13
.gdbinit
@ -71,3 +71,16 @@ end
|
||||
document dump_brigade
|
||||
Print bucket brigade info
|
||||
end
|
||||
|
||||
define dump_filters
|
||||
set $f = $arg0
|
||||
while $f
|
||||
printf "%s(0x%lx): ctx=0x%lx, r=0x%lx, c=0x%lx\n", \
|
||||
$f->frec->name, (unsigned long)$f, (unsigned long)$f->ctx, \
|
||||
$f->r, $f->c
|
||||
set $f = $f->next
|
||||
end
|
||||
end
|
||||
document dump_filters
|
||||
Print filter chain info
|
||||
end
|
||||
|
Reference in New Issue
Block a user