summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorMathieu Chartier <mathieuc@google.com>2016-06-16 17:02:52 -0700
committerMathieu Chartier <mathieuc@google.com>2016-06-16 17:09:40 -0700
commit6017782485d30c4e440e53107dde03dc20d56a9a (patch)
treefdb76fdde913c149151d89af06aed3e65663e0a5 /runtime
parenta8ba76e0c1c6c40172b2e62f923877b26c2f0be8 (diff)
downloadart-6017782485d30c4e440e53107dde03dc20d56a9a.tar.gz
art-6017782485d30c4e440e53107dde03dc20d56a9a.tar.bz2
art-6017782485d30c4e440e53107dde03dc20d56a9a.zip
Revert "Skip DumpForSigQuit if debugger is active"
Bug: 26118154 This reverts commit 0b8f1bfdfc721a41d98d13e12c4c67f62f698dfc. Change-Id: I03c743c1385e2488be1e21ee2ce34a74e6f22546
Diffstat (limited to 'runtime')
-rw-r--r--runtime/runtime.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/runtime/runtime.cc b/runtime/runtime.cc
index 3f7d570531..66c8f87fd1 100644
--- a/runtime/runtime.cc
+++ b/runtime/runtime.cc
@@ -1390,11 +1390,6 @@ void Runtime::RegisterRuntimeNativeMethods(JNIEnv* env) {
}
void Runtime::DumpForSigQuit(std::ostream& os) {
- // Dumping for SIGQIT may cause deadlocks if the the debugger is active. b/26118154
- if (Dbg::IsDebuggerActive()) {
- LOG(INFO) << "Skipping DumpForSigQuit due to active debugger";
- return;
- }
GetClassLinker()->DumpForSigQuit(os);
GetInternTable()->DumpForSigQuit(os);
GetJavaVM()->DumpForSigQuit(os);