From 310b6ff6760e82ed603e7b5349446ab41451e17f Mon Sep 17 00:00:00 2001 From: Josh Gao Date: Wed, 1 Mar 2017 11:29:59 -0800 Subject: [PATCH] Fix stacks on 64 bit processes. debuggerd64 doesn't exist anymore, `debuggerd $PID` works on both 32 and 64 bit processes. Bug: http://b/35872661 Change-Id: I47be05c7ec346e5d657d06e6c3aff1723494639b --- envsetup.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/envsetup.sh b/envsetup.sh index b239441f0..9680780f3 100644 --- a/envsetup.sh +++ b/envsetup.sh @@ -1148,8 +1148,7 @@ function stacks() adb shell cat $TMP else # Dump stacks of native process - local USE64BIT="$(is64bit $PID)" - adb shell debuggerd$USE64BIT -b $PID + adb shell debuggerd -b $PID fi fi }