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

Unified Diff: runtime/bin/eventhandler_win.h

Issue 10693039: Terminate event handler thread on isolate shutdown. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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/bin/eventhandler_win.h
diff --git a/runtime/bin/eventhandler_win.h b/runtime/bin/eventhandler_win.h
index e64027c2bc3ade4d5a6b1e25c97faa327526c5a6..dd0a4fff67fe38edaec29e02947f74677f7cb3b2 100644
--- a/runtime/bin/eventhandler_win.h
+++ b/runtime/bin/eventhandler_win.h
@@ -348,6 +348,9 @@ class EventHandlerImplementation {
void SendData(intptr_t id, Dart_Port dart_port, intptr_t data);
void StartEventHandler();
+ void Shutdown();
+
+ static void EventHandlerEntry(uword args);
DWORD GetTimeout();
void HandleInterrupt(InterruptMessage* msg);
@@ -367,6 +370,7 @@ class EventHandlerImplementation {
int64_t timeout_; // Time for next timeout.
Dart_Port timeout_port_;
+ bool shutdown_;
HANDLE completion_port_;
};

Powered by Google App Engine
This is Rietveld 408576698