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

Unified Diff: runtime/vm/heap.h

Issue 18259014: Object ID Ring with tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
Index: runtime/vm/heap.h
diff --git a/runtime/vm/heap.h b/runtime/vm/heap.h
index 6dd44192735d1676382984b55633bc05276f161a..f268bcccee2a991cdd0fbbb9c698b7f1bbe09ed8 100644
--- a/runtime/vm/heap.h
+++ b/runtime/vm/heap.h
@@ -293,6 +293,10 @@ class Heap {
// GC on the heap is in progress.
bool gc_in_progress_;
+ // Ring of objects who have a vm service id assigned to them.
Ivan Posva 2013/07/11 17:01:42 Is this still needed?
Cutch 2013/07/11 21:31:47 Done.
+ RawObject** object_id_ring_table_;
+ intptr_t object_id_ring_table_size_;
+
friend class GCTestHelper;
DISALLOW_COPY_AND_ASSIGN(Heap);
};

Powered by Google App Engine
This is Rietveld 408576698