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

Unified Diff: runtime/observatory/lib/src/models/objects/isolate.dart

Issue 2574643003: Added ability to request zone memory information for all isolates through the VM service and added … (Closed)
Patch Set: Created dart objects for thread and zone and added threads field to isolate. Created 4 years 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/observatory/lib/src/models/objects/isolate.dart
diff --git a/runtime/observatory/lib/src/models/objects/isolate.dart b/runtime/observatory/lib/src/models/objects/isolate.dart
index f114941ad840532bf4582412f7e654ad94daebc5..8cc5c79595548bc8abda9071b39484360cf08eb0 100644
--- a/runtime/observatory/lib/src/models/objects/isolate.dart
+++ b/runtime/observatory/lib/src/models/objects/isolate.dart
@@ -51,6 +51,9 @@ abstract class Isolate extends IsolateRef {
/// [optional] The error that is causing this isolate to exit, if applicable.
Error get error;
+ /// The list of threads associated with this isolate.
+ Iterable<Thread> get threads;
+
/// The current pause on exception mode for this isolate.
//ExceptionPauseMode get exceptionPauseMode;

Powered by Google App Engine
This is Rietveld 408576698