ART: Clean up IRT-related abort messaging am: f1e8630fe8 am: bd152e2a35
am: e62b7dad8a

Change-Id: Ib94f4fdd9966744217648f72e667bfb270695adc
diff --git a/runtime/runtime.cc b/runtime/runtime.cc
index df0dca0..0d876c7 100644
--- a/runtime/runtime.cc
+++ b/runtime/runtime.cc
@@ -1403,11 +1403,6 @@
 }
 
 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);
diff --git a/runtime/utils.cc b/runtime/utils.cc
index a40e313..6f3402f 100644
--- a/runtime/utils.cc
+++ b/runtime/utils.cc
@@ -45,6 +45,7 @@
 #if defined(__APPLE__)
 #include "AvailabilityMacros.h"  // For MAC_OS_X_VERSION_MAX_ALLOWED
 #include <sys/syscall.h>
+#include <crt_externs.h>
 #endif
 
 #if defined(__linux__)