summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2015-04-14 00:18:12 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-04-14 00:18:14 +0000
commite015a31e509c3f4de8a90b57b77329ba6609ce2f (patch)
tree3b4ce3591c8fe00b3fe232847ad5af0042afd064
parent5b310c4bc77609d8247356005430ae05714e9585 (diff)
parent1561e1b4029cc25a653e17b36663ae047345fad0 (diff)
downloadart-e015a31e509c3f4de8a90b57b77329ba6609ce2f.zip
art-e015a31e509c3f4de8a90b57b77329ba6609ce2f.tar.gz
art-e015a31e509c3f4de8a90b57b77329ba6609ce2f.tar.bz2
Merge "Revert "ART: Turn of native stack dump on x86 on-device""
-rw-r--r--runtime/thread.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/runtime/thread.cc b/runtime/thread.cc
index 58b272b..ac3f089 100644
--- a/runtime/thread.cc
+++ b/runtime/thread.cc
@@ -1070,12 +1070,7 @@ void Thread::DumpStack(std::ostream& os) const {
// If we're currently in native code, dump that stack before dumping the managed stack.
if (dump_for_abort || ShouldShowNativeStack(this)) {
DumpKernelStack(os, GetTid(), " kernel: ", false);
- // b/20040863. Temporary workaround for x86 libunwind issue.
-#if defined(__i386__) && defined(HAVE_ANDROID_OS)
- os << "Cannot dump native stack. b/20040863.\n";
-#else
DumpNativeStack(os, GetTid(), " native: ", GetCurrentMethod(nullptr, !dump_for_abort));
-#endif
}
DumpJavaStack(os);
} else {