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

Unified Diff: runtime/vm/object_id_ring.h

Issue 1403503003: Bump default object id ring capacity (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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/object_id_ring.h
diff --git a/runtime/vm/object_id_ring.h b/runtime/vm/object_id_ring.h
index a936a8f0523e16132a89d391b604a252cf62d148..b3ad0c95144b02fef7993d2ff75e9a38c5a954d4 100644
--- a/runtime/vm/object_id_ring.h
+++ b/runtime/vm/object_id_ring.h
@@ -36,7 +36,7 @@ class ObjectIdRing {
static const int32_t kMaxId = 0x3FFFFFFF;
static const int32_t kInvalidId = -1;
- static const int32_t kDefaultCapacity = 1024;
+ static const int32_t kDefaultCapacity = 8192;
static void Init(Isolate* isolate, int32_t capacity = kDefaultCapacity);
« 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