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

Unified Diff: runtime/observatory/lib/src/elements/debugger.dart

Issue 1344993002: Refactor isolate interrupts to use OOB messages instead of interrupt bits. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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/observatory/lib/src/elements/debugger.dart
diff --git a/runtime/observatory/lib/src/elements/debugger.dart b/runtime/observatory/lib/src/elements/debugger.dart
index 66c960987911fdb5750ba2ea4854b2000867c166..a90dbd1b386790908c2f6fe6902d1cfbdf442e50 100644
--- a/runtime/observatory/lib/src/elements/debugger.dart
+++ b/runtime/observatory/lib/src/elements/debugger.dart
@@ -1384,6 +1384,9 @@ class ObservatoryDebugger extends Debugger {
console.print('Paused at ${script.name}:${line}:${col}');
}
});
+ } else {
+ console.print("Paused in message loop (type 'continue' or [F7] "
+ "to resume processing messages)");
}
}

Powered by Google App Engine
This is Rietveld 408576698