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

Unified Diff: runtime/vm/isolate.cc

Issue 1132323002: Add Service ID zones to service protocol (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 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 | « runtime/vm/isolate.h ('k') | runtime/vm/json_stream.h » ('j') | 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 580e97a379a3d5175deb47ff1abca10fa4663a09..f03eca995e11972d8837ce70a22f9e26355b30d5 100644
--- a/runtime/vm/isolate.cc
+++ b/runtime/vm/isolate.cc
@@ -706,6 +706,8 @@ Isolate::~Isolate() {
delete spawn_state_;
delete log_;
log_ = NULL;
+ delete object_id_ring_;
+ object_id_ring_ = NULL;
delete pause_loop_monitor_;
pause_loop_monitor_ = NULL;
if (compiler_stats_ != NULL) {
@@ -786,6 +788,7 @@ Isolate* Isolate::Init(const char* name_prefix, bool is_vm_isolate) {
if (FLAG_compiler_stats) {
result->compiler_stats_ = new CompilerStats(result);
}
+ ObjectIdRing::Init(result);
// Add to isolate list.
AddIsolateTolist(result);
« no previous file with comments | « runtime/vm/isolate.h ('k') | runtime/vm/json_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698