Revert^4 "Add an option to disable native stack dumping on SIGQUIT."

Bug: 74121887

Still failing :(

This reverts commit 642e9d8249be5aff68022cabdc8ba576a57ff8d6.

Change-Id: I603ca9fdd2d8f2f759527130b3288efe5b23b5c3
diff --git a/runtime/thread_list.h b/runtime/thread_list.h
index 09b10d2..895c1a4 100644
--- a/runtime/thread_list.h
+++ b/runtime/thread_list.h
@@ -57,7 +57,7 @@
   void DumpForSigQuit(std::ostream& os)
       REQUIRES(!Locks::thread_list_lock_, !Locks::mutator_lock_);
   // For thread suspend timeout dumps.
-  void Dump(std::ostream& os)
+  void Dump(std::ostream& os, bool dump_native_stack = true)
       REQUIRES(!Locks::thread_list_lock_, !Locks::thread_suspend_count_lock_);
   pid_t GetLockOwner();  // For SignalCatcher.