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

Unified Diff: runtime/vm/isolate.h

Issue 503363005: - Add and enable concurrent sweeper. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 4 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/isolate.h
===================================================================
--- runtime/vm/isolate.h (revision 39568)
+++ runtime/vm/isolate.h (working copy)
@@ -120,6 +120,8 @@
static Isolate* Init(const char* name_prefix);
void Shutdown();
+ Isolate* ShallowCopy();
koda 2014/08/26 23:34:48 Briefly specify what is available in a shallow cop
Ivan Posva 2014/08/27 01:00:22 For now we are leaving this alone after discussion
+
// Register a newly introduced class.
void RegisterClass(const Class& cls);
void RegisterClassAt(intptr_t index, const Class& cls);
@@ -602,6 +604,7 @@
private:
Isolate();
+ explicit Isolate(Isolate* original);
void BuildName(const char* name_prefix);
void PrintInvokedFunctions();

Powered by Google App Engine
This is Rietveld 408576698