Turn off shutdown

BUG=

Review URL: https://codereview.chromium.org/1403293007 .
This commit is contained in:
Zachary Anderson 2015-11-04 12:56:02 -08:00
parent a0c51df0ce
commit ca7c39d8d2
2 changed files with 2 additions and 2 deletions

View file

@ -120,7 +120,7 @@ static const int kRestartRequestExitCode = 1000;
// Global flag that is used to indicate that the VM should do a clean
// shutdown.
static bool do_vm_shutdown = true;
static bool do_vm_shutdown = false;
static void ErrorExit(int exit_code, const char* format, ...) {
va_list arguments;

View file

@ -38,7 +38,7 @@ DECLARE_FLAG(bool, trace_isolates);
DECLARE_FLAG(bool, trace_time_all);
DEFINE_FLAG(bool, keep_code, false,
"Keep deoptimized code for profiling.");
DEFINE_FLAG(bool, shutdown, true, "Do a clean shutdown of the VM");
DEFINE_FLAG(bool, shutdown, false, "Do a clean shutdown of the VM");
Isolate* Dart::vm_isolate_ = NULL;
ThreadPool* Dart::thread_pool_ = NULL;