summaryrefslogtreecommitdiff
path: root/.gdbinit
diff options
context:
space:
mode:
authorMoriyoshi Koizumi <moriyoshi@php.net>2004-02-16 20:20:55 +0000
committerMoriyoshi Koizumi <moriyoshi@php.net>2004-02-16 20:20:55 +0000
commit097bfda39db6d75e77783d6f4a2ed407660e2743 (patch)
tree43020360c0424fbad13d911ef591be4b44a290ee /.gdbinit
parent7a7927c146c7be191f4ddfc8f8f21eaccac22078 (diff)
downloadphp-git-097bfda39db6d75e77783d6f4a2ed407660e2743.tar.gz
- Add "zbacktrace" user-defined command.
Diffstat (limited to '.gdbinit')
-rw-r--r--.gdbinit13
1 files changed, 12 insertions, 1 deletions
diff --git a/.gdbinit b/.gdbinit
index 1174b900f1..7c58e86fda 100644
--- a/.gdbinit
+++ b/.gdbinit
@@ -273,6 +273,18 @@ document printzops
dump operands of the current opline
end
+define zbacktrace
+ ____executor_globals
+ dump_bt $eg.current_execute_data
+end
+
+document zbacktrace
+ prints backtrace.
+ This command is almost a short cut for
+ > (gdb) ____executor_globals
+ > (gdb) dump_bt $eg.current_execute_data
+end
+
define zmemcheck
set $p = alloc_globals.head
set $stat = "?"
@@ -345,4 +357,3 @@ document zmemcheck
usage: zmemcheck [ptr].
if ptr is 0, all blocks will be listed.
end
-