OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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_LINUX) | 6 #if defined(TARGET_OS_LINUX) |
7 | 7 |
8 #include "bin/eventhandler.h" | 8 #include "bin/eventhandler.h" |
9 | 9 |
10 #include <errno.h> // NOLINT | 10 #include <errno.h> // NOLINT |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 UpdateEpollInstance(epoll_fd_, sd); | 219 UpdateEpollInstance(epoll_fd_, sd); |
220 } else if ((msg.data & (1 << kCloseCommand)) != 0) { | 220 } else if ((msg.data & (1 << kCloseCommand)) != 0) { |
221 ASSERT(msg.data == (1 << kCloseCommand)); | 221 ASSERT(msg.data == (1 << kCloseCommand)); |
222 // Close the socket and free system resources and move on to | 222 // Close the socket and free system resources and move on to |
223 // next message. | 223 // next message. |
224 RemoveFromEpollInstance(epoll_fd_, sd); | 224 RemoveFromEpollInstance(epoll_fd_, sd); |
225 intptr_t fd = sd->fd(); | 225 intptr_t fd = sd->fd(); |
226 sd->Close(); | 226 sd->Close(); |
227 socket_map_.Remove(GetHashmapKeyFromFd(fd), GetHashmapHashFromFd(fd)); | 227 socket_map_.Remove(GetHashmapKeyFromFd(fd), GetHashmapHashFromFd(fd)); |
228 delete sd; | 228 delete sd; |
| 229 DartUtils::PostInt32(msg.dart_port, 1 << kDestroyedEvent); |
229 } else { | 230 } else { |
230 if ((msg.data & (1 << kInEvent)) != 0 && sd->IsClosedRead()) { | 231 if ((msg.data & (1 << kInEvent)) != 0 && sd->IsClosedRead()) { |
231 DartUtils::PostInt32(msg.dart_port, 1 << kCloseEvent); | 232 DartUtils::PostInt32(msg.dart_port, 1 << kCloseEvent); |
232 } else { | 233 } else { |
233 // Setup events to wait for. | 234 // Setup events to wait for. |
234 sd->SetPortAndMask(msg.dart_port, msg.data); | 235 sd->SetPortAndMask(msg.dart_port, msg.data); |
235 UpdateEpollInstance(epoll_fd_, sd); | 236 UpdateEpollInstance(epoll_fd_, sd); |
236 } | 237 } |
237 } | 238 } |
238 } | 239 } |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 | 432 |
432 uint32_t EventHandlerImplementation::GetHashmapHashFromFd(intptr_t fd) { | 433 uint32_t EventHandlerImplementation::GetHashmapHashFromFd(intptr_t fd) { |
433 // The hashmap does not support keys with value 0. | 434 // The hashmap does not support keys with value 0. |
434 return dart::Utils::WordHash(fd + 1); | 435 return dart::Utils::WordHash(fd + 1); |
435 } | 436 } |
436 | 437 |
437 } // namespace bin | 438 } // namespace bin |
438 } // namespace dart | 439 } // namespace dart |
439 | 440 |
440 #endif // defined(TARGET_OS_LINUX) | 441 #endif // defined(TARGET_OS_LINUX) |
OLD | NEW |