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 #if !defined(DART_IO_DISABLED) | 5 #if !defined(DART_IO_DISABLED) |
6 | 6 |
7 #include "platform/globals.h" | 7 #include "platform/globals.h" |
8 #if defined(TARGET_OS_LINUX) | 8 #if defined(TARGET_OS_LINUX) |
9 | 9 |
10 #include "bin/eventhandler.h" | 10 #include "bin/eventhandler.h" |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 EPOLL_CTL_ADD, | 120 EPOLL_CTL_ADD, |
121 timer_fd_, | 121 timer_fd_, |
122 &event)); | 122 &event)); |
123 if (status == -1) { | 123 if (status == -1) { |
124 FATAL2( | 124 FATAL2( |
125 "Failed adding timerfd fd(%i) to epoll instance: %i", timer_fd_, errno); | 125 "Failed adding timerfd fd(%i) to epoll instance: %i", timer_fd_, errno); |
126 } | 126 } |
127 } | 127 } |
128 | 128 |
129 | 129 |
| 130 static void DeleteDescriptorInfo(void* info) { |
| 131 DescriptorInfo* di = reinterpret_cast<DescriptorInfo*>(info); |
| 132 di->Close(); |
| 133 delete di; |
| 134 } |
| 135 |
| 136 |
130 EventHandlerImplementation::~EventHandlerImplementation() { | 137 EventHandlerImplementation::~EventHandlerImplementation() { |
| 138 socket_map_.Clear(DeleteDescriptorInfo); |
131 VOID_TEMP_FAILURE_RETRY(close(epoll_fd_)); | 139 VOID_TEMP_FAILURE_RETRY(close(epoll_fd_)); |
132 VOID_TEMP_FAILURE_RETRY(close(timer_fd_)); | 140 VOID_TEMP_FAILURE_RETRY(close(timer_fd_)); |
133 VOID_TEMP_FAILURE_RETRY(close(interrupt_fds_[0])); | 141 VOID_TEMP_FAILURE_RETRY(close(interrupt_fds_[0])); |
134 VOID_TEMP_FAILURE_RETRY(close(interrupt_fds_[1])); | 142 VOID_TEMP_FAILURE_RETRY(close(interrupt_fds_[1])); |
135 } | 143 } |
136 | 144 |
137 | 145 |
138 void EventHandlerImplementation::UpdateEpollInstance(intptr_t old_mask, | 146 void EventHandlerImplementation::UpdateEpollInstance(intptr_t old_mask, |
139 DescriptorInfo *di) { | 147 DescriptorInfo *di) { |
140 intptr_t new_mask = di->Mask(); | 148 intptr_t new_mask = di->Mask(); |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 // The hashmap does not support keys with value 0. | 442 // The hashmap does not support keys with value 0. |
435 return dart::Utils::WordHash(fd + 1); | 443 return dart::Utils::WordHash(fd + 1); |
436 } | 444 } |
437 | 445 |
438 } // namespace bin | 446 } // namespace bin |
439 } // namespace dart | 447 } // namespace dart |
440 | 448 |
441 #endif // defined(TARGET_OS_LINUX) | 449 #endif // defined(TARGET_OS_LINUX) |
442 | 450 |
443 #endif // !defined(DART_IO_DISABLED) | 451 #endif // !defined(DART_IO_DISABLED) |
OLD | NEW |