Originally posted by: dickdunbar
Right ... the multiple dbx invocations is a performance problem.
I solve this using a dbx command file:
source core.dbx
_ core.dbx ___snip___
sh rm -f /tmp/core.dbx /tmp/core.tmp
ignore int
ignore alrm
th > /tmp/core.tmp
sh cat /tmp/core.tmp | egrep -v '_event_sleep|wchan' | cut -b 4-8 | awk '{print "ts("$1",$t"$1")"}' > /tmp/core.dbx
alias ts(tid,tnum) "p '--------- thread tid'; p tnum; th current tid; x; where"
source /tmp/core.dbx
_ core.dbx
_ snip
_ Sometimes additional stack information is useful.
Try adding this dbx command at the top of the file:
set $stack_details
Message was edited by: dickdunbar
#AIX-Forum