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

Unified Diff: dart/runtime/bin/eventhandler.h

Issue 665823007: Several bugfixes in dart:io's handing of sockets (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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 | « no previous file | dart/runtime/bin/eventhandler_linux.h » ('j') | dart/runtime/bin/eventhandler_linux.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/runtime/bin/eventhandler.h
diff --git a/dart/runtime/bin/eventhandler.h b/dart/runtime/bin/eventhandler.h
index 54845d0e3f3517e43a9170a8ac6c8e8312ffe272..4293c278278dea0de817a7191a0f894191d0c1c9 100644
--- a/dart/runtime/bin/eventhandler.h
+++ b/dart/runtime/bin/eventhandler.h
@@ -30,6 +30,11 @@ enum MessageFlags {
};
+#define COMMAND_MASK(data) (data & ((1 << kCloseCommand) | \
Søren Gjesse 2014/10/22 07:23:51 I think the COMMAND_MASK should just be the mask
kustermann 2014/10/23 21:59:23 Then it becomes more verbose & redundant on the ca
+ (1 << kShutdownReadCommand) | \
+ (1 << kShutdownWriteCommand) | \
+ (1 << kReturnTokenCommand)))
+
class TimeoutQueue {
private:
class Timeout {
« no previous file with comments | « no previous file | dart/runtime/bin/eventhandler_linux.h » ('j') | dart/runtime/bin/eventhandler_linux.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698