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

Unified Diff: runtime/vm/object.h

Issue 456983002: Refactor isolate startup code in preparation for making isolate spawning more truly non-blocking. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review 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
« no previous file with comments | « runtime/vm/message_handler.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index 76bac3d757a0e1911868f708c5a68e4729a9daee..b8b4915ace6add34cb9f15d9639a76a6a18b6fea 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -6915,7 +6915,9 @@ class ReceivePort : public Instance {
static intptr_t InstanceSize() {
return RoundedAllocationSize(sizeof(RawReceivePort));
}
- static RawReceivePort* New(Dart_Port id, Heap::Space space = Heap::kNew);
+ static RawReceivePort* New(Dart_Port id,
+ bool is_control_port,
+ Heap::Space space = Heap::kNew);
private:
FINAL_HEAP_OBJECT_IMPLEMENTATION(ReceivePort, Instance);
« no previous file with comments | « runtime/vm/message_handler.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698