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

Unified Diff: runtime/bin/socket_win.cc

Issue 23609060: Make stdout and stderr async. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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/bin/socket_win.cc
diff --git a/runtime/bin/socket_win.cc b/runtime/bin/socket_win.cc
index 696f8cc6744f1b01e87fd4292a883472a9a6e697..87a0b30e2f5350a91da3cfdd841f0967243d14ce 100644
--- a/runtime/bin/socket_win.cc
+++ b/runtime/bin/socket_win.cc
@@ -201,6 +201,7 @@ intptr_t Socket::GetStdioHandle(intptr_t num) {
FileHandle* file_handle = new FileHandle(handle);
if (file_handle == NULL) return -1;
file_handle->MarkDoesNotSupportOverlappedIO();
+ file_handle->EnsureInitialized(EventHandler::delegate());
Søren Gjesse 2013/09/24 11:24:22 How about getting rid of EnsureInitialized complet
Anders Johnsen 2013/09/24 11:41:56 Will do, it would be a nice cleanup.
return reinterpret_cast<intptr_t>(file_handle);
}

Powered by Google App Engine
This is Rietveld 408576698