summaryrefslogtreecommitdiffstats
path: root/solenv
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-06-12 16:11:20 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-06-13 09:49:34 +0200
commit5ccbd3f5c3adba28aadb00a28b8a80d4c1ef46e8 (patch)
tree9aeafe2648776c9905ac1ea53d378ee9a7df006b /solenv
parentOnly print the rtl::Reference's pointer (diff)
downloadcore-5ccbd3f5c3adba28aadb00a28b8a80d4c1ef46e8.tar.gz
core-5ccbd3f5c3adba28aadb00a28b8a80d4c1ef46e8.zip
Generate full backtraces, including local variables
Change-Id: Ia655865b621b1c8e37a52715b89534a00dcda1d7
Diffstat (limited to 'solenv')
-rwxr-xr-xsolenv/bin/gdb-core-bt.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/gdb-core-bt.sh b/solenv/bin/gdb-core-bt.sh
index 2f205bec9afc..69ce22b6f543 100755
--- a/solenv/bin/gdb-core-bt.sh
+++ b/solenv/bin/gdb-core-bt.sh
@@ -22,7 +22,7 @@ then
echo "It looks like ${EXECUTABLE} generated a core file at ${COREFILE}"
echo "Backtraces:"
GDBCOMMANDFILE=`mktemp`
- echo "thread apply all backtrace" > "$GDBCOMMANDFILE"
+ echo "thread apply all backtrace full" > "$GDBCOMMANDFILE"
gdb -x "$GDBCOMMANDFILE" --batch "$EXECUTABLE" "$COREFILE"
rm "$GDBCOMMANDFILE"
echo