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

Unified Diff: runtime/vm/isolate.cc

Issue 1419533011: Redo background compilation queues to allocate queue and its element in the C-heap (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Address comments Created 5 years, 1 month 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 | « runtime/vm/isolate.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.cc
diff --git a/runtime/vm/isolate.cc b/runtime/vm/isolate.cc
index 491cac220f30fde414b06db2eb368a328f849b8a..228a533024419e710a6f359a5bc5063e07f87a25 100644
--- a/runtime/vm/isolate.cc
+++ b/runtime/vm/isolate.cc
@@ -794,9 +794,9 @@ Isolate::Isolate(const Dart_IsolateFlags& api_flags)
all_classes_finalized_(false),
next_(NULL),
pause_loop_monitor_(NULL),
- cha_invalidation_gen_(0),
- field_invalidation_gen_(0),
- prefix_invalidation_gen_(0) {
+ cha_invalidation_gen_(kInvalidGen),
+ field_invalidation_gen_(kInvalidGen),
+ prefix_invalidation_gen_(kInvalidGen) {
flags_.CopyFrom(api_flags);
Thread::Current()->set_vm_tag(VMTag::kEmbedderTagId);
set_user_tag(UserTags::kDefaultUserTag);
« no previous file with comments | « runtime/vm/isolate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698