diff options
Diffstat (limited to 'runtime/runtime.cc')
-rw-r--r-- | runtime/runtime.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/runtime/runtime.cc b/runtime/runtime.cc index 66bb80315d..bf345486ed 100644 --- a/runtime/runtime.cc +++ b/runtime/runtime.cc @@ -1493,11 +1493,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); |