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

Unified Diff: runtime/vm/isolate.h

Issue 204003002: Support wedging isolates before startup or before exit. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 | runtime/vm/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index 24ed4f57631a4135252ceb799bf7285bec95470e..6743b33cbd2d0a500eb87f6c28d355cce9104db0 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -142,12 +142,6 @@ class Isolate : public BaseIsolate {
int64_t start_time() const { return start_time_; }
- // Creates the pin port (responsible for stopping the isolate from being
- // destroyed).
- void CreatePinPort();
- // Closes pin port.
- void ClosePinPort();
-
Dart_Port main_port() { return main_port_; }
void set_main_port(Dart_Port port) {
ASSERT(main_port_ == 0); // Only set main port once.
@@ -486,7 +480,6 @@ class Isolate : public BaseIsolate {
Dart_MessageNotifyCallback message_notify_callback_;
char* name_;
int64_t start_time_;
- Dart_Port pin_port_;
Dart_Port main_port_;
Heap* heap_;
ObjectStore* object_store_;
« no previous file with comments | « no previous file | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698