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 --- |
/** |