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

Unified Diff: runtime/bin/process.cc

Issue 1325963002: Don't stop the event handler (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « runtime/bin/main.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/process.cc
diff --git a/runtime/bin/process.cc b/runtime/bin/process.cc
index 2d9d0ed092674b3c148d7e85a5a2ba2e7305bd3f..242ef1c055db971bcc41d2a26b25bd32bd1a0267 100644
--- a/runtime/bin/process.cc
+++ b/runtime/bin/process.cc
@@ -221,7 +221,8 @@ void FUNCTION_NAME(Process_Exit)(Dart_NativeArguments args) {
Dart_ExitIsolate();
Dart_Cleanup();
DebuggerConnectionHandler::StopHandler();
- EventHandler::Stop();
+ // TODO(zra): Stop the EventHandler once thread shutdown is enabled.
+ // EventHandler::Stop();
exit(static_cast<int>(status));
}
« no previous file with comments | « runtime/bin/main.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698