summaryrefslogtreecommitdiffstats
path: root/runtime/runtime_linux.cc
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2014-04-16 19:13:59 -0700
committerChristopher Ferris <cferris@google.com>2014-04-18 15:32:15 -0700
commita2cee18799d7e61adb037a4219adb23fef7d022b (patch)
tree214a6d6d4682196aa0e2ebcb5a0cc7bcf3eec2d3 /runtime/runtime_linux.cc
parented0bc0bbf26f6751f31213d24ccdac49766e93ff (diff)
downloadandroid_art-a2cee18799d7e61adb037a4219adb23fef7d022b.tar.gz
android_art-a2cee18799d7e61adb037a4219adb23fef7d022b.tar.bz2
android_art-a2cee18799d7e61adb037a4219adb23fef7d022b.zip
Modify unwind to comply with stack parser tools.
Bug: 14081592 Change-Id: I6906b2575c74d64f1c3ba7602779b3a789de1c69
Diffstat (limited to 'runtime/runtime_linux.cc')
-rw-r--r--runtime/runtime_linux.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/runtime_linux.cc b/runtime/runtime_linux.cc
index da1b2cac14..960d3324d3 100644
--- a/runtime/runtime_linux.cc
+++ b/runtime/runtime_linux.cc
@@ -33,7 +33,7 @@ static constexpr bool kDumpHeapObjectOnSigsevg = false;
struct Backtrace {
void Dump(std::ostream& os) {
- DumpNativeStack(os, GetTid(), "\t", true);
+ DumpNativeStack(os, GetTid(), "\t");
}
};