Include JNI details in the SIGQUIT output.
Also include the original command line (framework apps deliberately clobber
their argv[]).
Change-Id: I63e04cb637fa89764e8963f3d086806ae230e953
diff --git a/src/runtime.cc b/src/runtime.cc
index 8fe760e..18d40f5 100644
--- a/src/runtime.cc
+++ b/src/runtime.cc
@@ -491,10 +491,6 @@
parsed->heap_growth_limit_ = parsed->heap_maximum_size_;
}
- LOG(INFO) << "Build type: "
- << (kIsDebugBuild ? "debug" : "optimized")
- << "; CheckJNI: " << (parsed->check_jni_ ? "on" : "off");
-
return parsed.release();
}
@@ -754,6 +750,7 @@
void Runtime::DumpForSigQuit(std::ostream& os) {
GetClassLinker()->DumpForSigQuit(os);
GetInternTable()->DumpForSigQuit(os);
+ GetJavaVM()->DumpForSigQuit(os);
GetHeap()->DumpForSigQuit(os);
os << "\n";