OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 #include "platform/globals.h" | 5 #include "platform/globals.h" |
6 #if defined(TARGET_OS_WINDOWS) | 6 #if defined(TARGET_OS_WINDOWS) |
7 | 7 |
8 #include "bin/builtin.h" | 8 #include "bin/builtin.h" |
9 #include "bin/eventhandler.h" | 9 #include "bin/eventhandler.h" |
10 #include "bin/file.h" | 10 #include "bin/file.h" |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 handle = GetStdHandle(STD_ERROR_HANDLE); | 194 handle = GetStdHandle(STD_ERROR_HANDLE); |
195 break; | 195 break; |
196 default: UNREACHABLE(); | 196 default: UNREACHABLE(); |
197 } | 197 } |
198 if (handle == INVALID_HANDLE_VALUE) { | 198 if (handle == INVALID_HANDLE_VALUE) { |
199 return -1; | 199 return -1; |
200 } | 200 } |
201 FileHandle* file_handle = new FileHandle(handle); | 201 FileHandle* file_handle = new FileHandle(handle); |
202 if (file_handle == NULL) return -1; | 202 if (file_handle == NULL) return -1; |
203 file_handle->MarkDoesNotSupportOverlappedIO(); | 203 file_handle->MarkDoesNotSupportOverlappedIO(); |
| 204 file_handle->EnsureInitialized(EventHandler::delegate()); |
204 return reinterpret_cast<intptr_t>(file_handle); | 205 return reinterpret_cast<intptr_t>(file_handle); |
205 } | 206 } |
206 | 207 |
207 | 208 |
208 intptr_t ServerSocket::Accept(intptr_t fd) { | 209 intptr_t ServerSocket::Accept(intptr_t fd) { |
209 ListenSocket* listen_socket = reinterpret_cast<ListenSocket*>(fd); | 210 ListenSocket* listen_socket = reinterpret_cast<ListenSocket*>(fd); |
210 ClientSocket* client_socket = listen_socket->Accept(); | 211 ClientSocket* client_socket = listen_socket->Accept(); |
211 if (client_socket != NULL) { | 212 if (client_socket != NULL) { |
212 return reinterpret_cast<intptr_t>(client_socket); | 213 return reinterpret_cast<intptr_t>(client_socket); |
213 } else { | 214 } else { |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
438 IPPROTO_TCP, | 439 IPPROTO_TCP, |
439 TCP_NODELAY, | 440 TCP_NODELAY, |
440 reinterpret_cast<char *>(&on), | 441 reinterpret_cast<char *>(&on), |
441 sizeof(on)) == 0; | 442 sizeof(on)) == 0; |
442 } | 443 } |
443 | 444 |
444 } // namespace bin | 445 } // namespace bin |
445 } // namespace dart | 446 } // namespace dart |
446 | 447 |
447 #endif // defined(TARGET_OS_WINDOWS) | 448 #endif // defined(TARGET_OS_WINDOWS) |
OLD | NEW |