summaryrefslogtreecommitdiff
path: root/.gdbinit
diff options
context:
space:
mode:
authorMoriyoshi Koizumi <moriyoshi@php.net>2003-04-06 18:12:16 +0000
committerMoriyoshi Koizumi <moriyoshi@php.net>2003-04-06 18:12:16 +0000
commite184a55bf4e249173fd8c31d28ffb006992fe73b (patch)
treebd1e434d0940fe835b0d2828f1029277dcb6c6ec /.gdbinit
parent80bfd184eb12a88ce0655d4e6aadad18c29fe048 (diff)
downloadphp-git-e184a55bf4e249173fd8c31d28ffb006992fe73b.tar.gz
Improved readability of zmemcheck output
Diffstat (limited to '.gdbinit')
-rw-r--r--.gdbinit28
1 files changed, 22 insertions, 6 deletions
diff --git a/.gdbinit b/.gdbinit
index 065396bc5c..50eec27e1d 100644
--- a/.gdbinit
+++ b/.gdbinit
@@ -193,7 +193,8 @@ define printzn
end
document printzn
- print type and content of znode. usage: printzn &opline->op1
+ print type and content of znode.
+ usage: printzn &opline->op1
end
define printzops
@@ -217,7 +218,7 @@ define zmemcheck
else
set $not_found = 0
end
- printf " block file:line (orig) status\n"
+ printf " block status file:line\n"
printf "-------------------------------------------------------------------------------\n"
while $p
set $aptr = $p + sizeof(struct _zend_mem_header) + sizeof(align_test)
@@ -231,10 +232,23 @@ define zmemcheck
if $p->magic == 0xfb8277dc
set $stat = "CACHED"
end
-
- printf " 0x%08x %-52s:%5d %-06s\n", $aptr, $p->filename, $p->lineno, $stat
+ set $filename = strrchr($p->filename, '/')
+ if !$filename
+ set $filename = $p->filename
+ else
+ set $filename = $filename + 1
+ end
+ printf " 0x%08x %-06s %s:%d", $aptr, $stat, $filename, $p->lineno
if $p->orig_filename
- printf " <= %-52s:%5d\n", $p->orig_filename, $p->orig_lineno
+ set $orig_filename = strrchr($p->orig_filename, '/')
+ if !$orig_filename
+ set $orig_filename = $p->orig_filename
+ else
+ set $orig_filename = $orig_filename + 1
+ end
+ printf " <= %s:%d\n", $orig_filename, $p->orig_lineno
+ else
+ printf "\n"
end
if $arg0 != 0
set $p = 0
@@ -252,6 +266,8 @@ define zmemcheck
end
document zmemcheck
- show status of a memory block. usage: zmemcheck [ptr]. if ptr = 0 all blocks will be listed.
+ show status of a memory block.
+ usage: zmemcheck [ptr].
+ if ptr is 0, all blocks will be listed.
end