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

Unified Diff: runtime/include/dart_api.h

Issue 13452007: Add new Dart API call Dart_MakeIsolateRunnable(). This would allow an (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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/include/dart_api.h
===================================================================
--- runtime/include/dart_api.h (revision 20945)
+++ runtime/include/dart_api.h (working copy)
@@ -827,6 +827,20 @@
*/
DART_EXPORT void Dart_InterruptIsolate(Dart_Isolate isolate);
+
+/**
+ * Make isolate runnable.
+ *
+ * When isolates are spawned this function is used to indicate that
+ * the creation and initialization (including script loading) of the
+ * isolate is complete and the isolate can start.
+ * This function does not expect there to be a current isolate.
+ *
+ * \param isolate The isolate to be made runnable.
+ */
+DART_EXPORT bool Dart_MakeIsolateRunnable(Dart_Isolate isolate);
Ivan Posva 2013/04/05 15:51:59 Dart_IsolateMakeRunnable. We have tried to follow
siva 2013/04/05 17:43:29 Done.
+
+
// --- Messages and Ports ---
/**

Powered by Google App Engine
This is Rietveld 408576698