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

Side by Side Diff: runtime/bin/eventhandler.h

Issue 8437090: Change the handling of closing sockets (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments by ager@ Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « frog/file_system_vm.dart ('k') | runtime/bin/eventhandler_linux.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef BIN_EVENTHANDLER_H_ 5 #ifndef BIN_EVENTHANDLER_H_
6 #define BIN_EVENTHANDLER_H_ 6 #define BIN_EVENTHANDLER_H_
7 7
8 #include "bin/builtin.h" 8 #include "bin/builtin.h"
9 9
10 // Flags used to provide information and actions to the eventhandler 10 // Flags used to provide information and actions to the eventhandler
11 // when sending a message about a file descriptor. These flags should 11 // when sending a message about a file descriptor. These flags should
12 // be kept in sync with the constants in socket_impl.dart. For more 12 // be kept in sync with the constants in socket_impl.dart. For more
13 // information see the comments in socket_impl.dart 13 // information see the comments in socket_impl.dart
14 enum MessageFlags { 14 enum MessageFlags {
15 kInEvent = 0, 15 kInEvent = 0,
16 kOutEvent = 1, 16 kOutEvent = 1,
17 kErrorEvent = 2, 17 kErrorEvent = 2,
18 kCloseEvent = 3, 18 kCloseEvent = 3,
19 kCloseCommand = 8, 19 kCloseCommand = 8,
20 kShutdownReadCommand = 9,
21 kShutdownWriteCommand = 10,
20 kListeningSocket = 16, 22 kListeningSocket = 16,
21 }; 23 };
22 24
23 25
24 // The event handler delegation class is OS specific. 26 // The event handler delegation class is OS specific.
25 #if defined(TARGET_OS_LINUX) 27 #if defined(TARGET_OS_LINUX)
26 #include "bin/eventhandler_linux.h" 28 #include "bin/eventhandler_linux.h"
27 #elif defined(TARGET_OS_MACOS) 29 #elif defined(TARGET_OS_MACOS)
28 #include "bin/eventhandler_macos.h" 30 #include "bin/eventhandler_macos.h"
29 #elif defined(TARGET_OS_WINDOWS) 31 #elif defined(TARGET_OS_WINDOWS)
(...skipping 13 matching lines...) Expand all
43 handler->delegate_.StartEventHandler(); 45 handler->delegate_.StartEventHandler();
44 return handler; 46 return handler;
45 } 47 }
46 48
47 private: 49 private:
48 EventHandlerImplementation delegate_; 50 EventHandlerImplementation delegate_;
49 }; 51 };
50 52
51 53
52 #endif // BIN_EVENTHANDLER_H_ 54 #endif // BIN_EVENTHANDLER_H_
OLDNEW
« no previous file with comments | « frog/file_system_vm.dart ('k') | runtime/bin/eventhandler_linux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698