forked from openkylin/platform_build
am eb71bf7b: Merge change I01d9d733 into eclair
Merge commit 'eb71bf7b743c94796dd6a93f8fa11e0fa6b8996b' into eclair-mr2 * commit 'eb71bf7b743c94796dd6a93f8fa11e0fa6b8996b': Add a host shell function to generate system_server stack traces
This commit is contained in:
commit
014b8e0372
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue