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

Unified Diff: runtime/bin/eventhandler_win.h

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
« no previous file with comments | « runtime/bin/eventhandler.cc ('k') | runtime/bin/eventhandler_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/eventhandler_win.h
diff --git a/runtime/bin/eventhandler_win.h b/runtime/bin/eventhandler_win.h
index 3adaf5795a112852d1558c52d0e2d264e2602725..945277b78dcb4436f65a6094c4148cd1a4825cb8 100644
--- a/runtime/bin/eventhandler_win.h
+++ b/runtime/bin/eventhandler_win.h
@@ -211,6 +211,7 @@ class Handle {
}
void ReadSyncCompleteAsync();
+ void WriteSyncCompleteAsync();
DWORD last_error() { return last_error_; }
void set_last_error(DWORD last_error) { last_error_ = last_error; }
@@ -241,6 +242,7 @@ class Handle {
OverlappedBuffer* pending_write_; // Buffer for pending write
DWORD last_error_;
+ DWORD thread_wrote_;
private:
int flags_;
@@ -272,7 +274,6 @@ class DirectoryWatchHandle : public Handle {
virtual void EnsureInitialized(EventHandlerImplementation* event_handler);
virtual bool IsClosed();
- virtual void DoClose();
virtual bool IssueRead();
« no previous file with comments | « runtime/bin/eventhandler.cc ('k') | runtime/bin/eventhandler_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698