diff options
author | Lukas Larsson <[email protected]> | 2013-11-07 12:01:38 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2013-11-07 12:01:38 +0100 |
commit | aecf59396e67662c05b64bae29d4bfdc86b58ae7 (patch) | |
tree | 4a1400fc3995eab60cd12428b13f98ba9dc0875e /erts/etc | |
parent | dc91f0d39bb3d9ed8cc81765ad1a8f195ce54209 (diff) | |
parent | d8657d0bbdf4db7a018b9a614b472120a810689e (diff) | |
download | otp-aecf59396e67662c05b64bae29d4bfdc86b58ae7.tar.gz otp-aecf59396e67662c05b64bae29d4bfdc86b58ae7.tar.bz2 otp-aecf59396e67662c05b64bae29d4bfdc86b58ae7.zip |
Merge branch 'maint'
* maint:
erts: Add cerl -dump and dumping in z_SUITE
Diffstat (limited to 'erts/etc')
-rw-r--r-- | erts/etc/unix/cerl.src | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/erts/etc/unix/cerl.src b/erts/etc/unix/cerl.src index 41baa323ed..38c6dd037f 100644 --- a/erts/etc/unix/cerl.src +++ b/erts/etc/unix/cerl.src @@ -33,6 +33,7 @@ # You have to start beam in gdb using "run". # -rgdb Run the debug compiled emulator in gdb. # You have to start beam in gdb using "run". +# -dump Dump the bt of all threads in a core. # -break F Run the debug compiled emulator in emacs and gdb and set break. # The session is started, i.e. "run" is already don for you. # -xxgdb FIXME currently disabled @@ -178,6 +179,12 @@ while [ $# -gt 0 ]; do cargs="$cargs -frmptr" TYPE=.frmptr ;; + "-dump") + shift + GDB=dump + core="$1" + shift + ;; "-gdb") shift GDB=egdb @@ -331,7 +338,7 @@ elif [ "x$GDB" = "xgdb" ]; then echo "source $ROOTDIR/erts/etc/unix/etp-commands" > $cmdfile # Fire up gdb in emacs... exec gdb $GDBBP -x $cmdfile $gdbcmd -else +elif [ "x$GDB" = "xegdb" ]; then if [ "x$EMACS" = "x" ]; then EMACS=emacs fi @@ -372,4 +379,23 @@ else (comint-send-input)" # Fire up gdb in emacs... exec $EMACS --eval "(progn (gdb \"gdb $GDBARGS$EMU_NAME\") $gdbcmd)" +elif [ "x$GDB" = "xdump" ]; then + cmdfile="/tmp/.cerlgdb.$$" + case "x$core" in + x/*) + gdbcmd="$EMU_NAME ${core}" + ;; + *) + dir=`pwd` + gdbcmd="$EMU_NAME ${dir}/${core}" + ;; + esac + echo "set width 0 +set height 0 +set verbose off + +source $ROOTDIR/erts/etc/unix/etp-commands +thread apply all bt +" > $cmdfile + exec gdb --batch --command=$cmdfile $gdbcmd fi |