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

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: portmap changes, fixed hang 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/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index cede5f6bb91e25f995ec0afaf29fcae185a576ef..faabae860a5850d3f3068d5df0b197dba0de49bf 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -6925,7 +6925,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);
« runtime/vm/isolate.h ('K') | « 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