am 218c6d34: am 014b8e03: am eb71bf7b: Merge change I01d9d733 into eclair

Merge commit '218c6d3464c6e5c75765d59fbc42bb8357d88a1d'

* commit '218c6d3464c6e5c75765d59fbc42bb8357d88a1d':
  Add a host shell function to generate system_server stack traces
This commit is contained in:
Christopher Tate 2009-11-13 10:55:33 -08:00 committed by Android Git Automerger
commit 87cffba830
1 changed files with 7 additions and 0 deletions

View File

@ -687,6 +687,13 @@ function pid()
fi
}
# systemstack - dump the current stack trace of all threads in the system process
# to the usual ANR traces file
function systemstack()
{
adb shell echo '""' '>>' /data/anr/traces.txt && adb shell chmod 776 /data/anr/traces.txt && adb shell kill -3 $(pid system_server)
}
function gdbclient()
{
local OUT_ROOT=$(get_abs_build_var PRODUCT_OUT)