summaryrefslogtreecommitdiff
path: root/.gdbinit
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2020-05-26 22:44:01 +0000
committerYann Ylavic <ylavic@apache.org>2020-05-26 22:44:01 +0000
commit6792af857363e0b62700014414da1da53253b0a1 (patch)
tree901b81b1d5ab805152d430f56791e97a04ff229f /.gdbinit
parent9b7c98cdee88db74d0c274903310eaf36ca59b7e (diff)
downloadhttpd-6792af857363e0b62700014414da1da53253b0a1.tar.gz
.gdbinit: align columns [skip ci]
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1878140 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '.gdbinit')
-rw-r--r--.gdbinit18
1 files changed, 9 insertions, 9 deletions
diff --git a/.gdbinit b/.gdbinit
index 76ddc548dd..e7651d1bc4 100644
--- a/.gdbinit
+++ b/.gdbinit
@@ -157,7 +157,7 @@ define dump_bucket_ex
set $fd = ((apr_bucket_file*)$bucket->data)->fd->filedes
print_bkt_datacol "contents" "[***file***] fd=%-6ld" (long)$fd $sh
set $refcount = ((apr_bucket_refcount *)$bucket->data)->refcount
- print_bkt_datacol "rc" "%d" $refcount $sh
+ print_bkt_datacol "rc" "%-3d" $refcount $sh
else
if (($bucket->type == &apr_bucket_type_heap) || \
@@ -219,7 +219,7 @@ define dump_bucket_ex
end
if $refcount != -1
- print_bkt_datacol "rc" "%d" $refcount $sh
+ print_bkt_datacol "rc" "%-3d" $refcount $sh
else
print_bkt_datacol "rc" "n/%c" 'a' $sh
end
@@ -228,25 +228,25 @@ define dump_bucket_ex
if ($bucket->type == &apr_bucket_type_pipe)
# pipe bucket, can show fd
- set $fd = ((apr_file_t*)$bucket->data)->filedes;
- print_bkt_datacol "contents" "[***pipe***] fd=%-6ld" (long)$fd $sh
+ set $fd = ((apr_file_t*)$bucket->data)->filedes
+ print_bkt_datacol "contents" "[***pipe***] fd=%-3ld" (long)$fd $sh
else
if ($bucket->type == &apr_bucket_type_socket)
# file bucket, can show fd
- set $fd = ((apr_socket_t*)$bucket->data)->socketdes;
- print_bkt_datacol "contents" "[**socket**] fd=%-6ld" (long)$fd $sh
+ set $fd = ((apr_socket_t*)$bucket->data)->socketdes
+ print_bkt_datacol "contents" "[**socket**] fd=%-3ld" (long)$fd $sh
else
# 3rd-party bucket type
- print_bkt_datacol "contents" "[**opaque**]%-10c" ' ' $sh
+ print_bkt_datacol "contents" "[**opaque**]%-7c" ' ' $sh
end
end
# no refcount
- printf " "
+ printf " "
print_bkt_datacol "rc" "n/%c" 'a' $sh
end
end
@@ -273,7 +273,7 @@ define dump_brigade
printf " | type (address) | length | "
printf "data address | contents | rc\n"
- printf "------------------------------------------"
+ printf "-------------------------------------------"
printf "----------------------------------------\n"
if $bucket == $sentinel