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/runtime.cc b/runtime/runtime.cc
index bb76e61..9a626ba 100644
--- a/runtime/runtime.cc
+++ b/runtime/runtime.cc
@@ -271,6 +271,7 @@
       pending_hidden_api_warning_(false),
       dedupe_hidden_api_warnings_(true),
       always_set_hidden_api_warning_flag_(false),
+      dump_native_stack_on_sig_quit_(true),
       pruned_dalvik_cache_(false),
       // Initially assume we perceive jank in case the process state is never updated.
       process_state_(kProcessStateJankPerceptible),
@@ -1152,6 +1153,7 @@
   is_explicit_gc_disabled_ = runtime_options.Exists(Opt::DisableExplicitGC);
   dex2oat_enabled_ = runtime_options.GetOrDefault(Opt::Dex2Oat);
   image_dex2oat_enabled_ = runtime_options.GetOrDefault(Opt::ImageDex2Oat);
+  dump_native_stack_on_sig_quit_ = runtime_options.GetOrDefault(Opt::DumpNativeStackOnSigQuit);
 
   vfprintf_ = runtime_options.GetOrDefault(Opt::HookVfprintf);
   exit_ = runtime_options.GetOrDefault(Opt::HookExit);