Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1390)

Unified Diff: runtime/vm/dart.cc

Issue 2979243002: Remove some pause-related fields in a PRODUCT build (Closed)
Patch Set: . Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/vm/dart_api_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/dart.cc
diff --git a/runtime/vm/dart.cc b/runtime/vm/dart.cc
index d61096f39aa88964d84da9b4994f1d9a6eabc3bd..3949b8b51bdd18fe013d054b835201a33f3ee0d1 100644
--- a/runtime/vm/dart.cc
+++ b/runtime/vm/dart.cc
@@ -610,11 +610,13 @@ RawError* Dart::InitializeIsolate(const uint8_t* snapshot_data,
is_kernel_isolate = KernelIsolate::IsKernelIsolate(I);
#endif
ServiceIsolate::MaybeMakeServiceIsolate(I);
+#if !defined(PRODUCT)
if (!ServiceIsolate::IsServiceIsolate(I) && !is_kernel_isolate) {
I->message_handler()->set_should_pause_on_start(
FLAG_pause_isolates_on_start);
I->message_handler()->set_should_pause_on_exit(FLAG_pause_isolates_on_exit);
}
+#endif // !defined(PRODUCT)
ServiceIsolate::SendIsolateStartupMessage();
#if !defined(PRODUCT)
« no previous file with comments | « no previous file | runtime/vm/dart_api_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698