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

Unified Diff: runtime/vm/dart.cc

Issue 2695013002: Fix build for precompiled target (Closed)
Patch Set: Created 3 years, 10 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 | no next file » | 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 f872fa17b3fda4b55a769741d0ae976d622c1446..07cdcdc1fd4d5662ec39a65224617601e2f64bcf 100644
--- a/runtime/vm/dart.cc
+++ b/runtime/vm/dart.cc
@@ -610,16 +610,18 @@ RawError* Dart::InitializeIsolate(const uint8_t* snapshot_data,
I->class_table()->Print();
}
+ bool is_kernel_isolate = false;
#ifndef DART_PRECOMPILED_RUNTIME
KernelIsolate::InitCallback(I);
+ is_kernel_isolate = KernelIsolate::IsKernelIsolate(I);
#endif
ServiceIsolate::MaybeMakeServiceIsolate(I);
- if (!ServiceIsolate::IsServiceIsolate(I) &&
- !KernelIsolate::IsKernelIsolate(I)) {
+ 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);
}
+
ServiceIsolate::SendIsolateStartupMessage();
if (FLAG_support_debugger) {
I->debugger()->NotifyIsolateCreated();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698