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

Unified Diff: runtime/bin/eventhandler_fuchsia.cc

Issue 2655893002: VM eventhandler: Update epoll/kqueue even if the only event is an error (Closed)
Patch Set: No notifications on empty event mask Created 3 years, 11 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 | « runtime/bin/eventhandler_android.cc ('k') | runtime/bin/eventhandler_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/eventhandler_fuchsia.cc
diff --git a/runtime/bin/eventhandler_fuchsia.cc b/runtime/bin/eventhandler_fuchsia.cc
index 043e95ee189326a86aad4228da8e354f53ea5246..6531ce5bc6b9485be6fb3b03e99c8080d4f81039 100644
--- a/runtime/bin/eventhandler_fuchsia.cc
+++ b/runtime/bin/eventhandler_fuchsia.cc
@@ -389,14 +389,12 @@ void EventHandlerImplementation::HandleEvents(struct epoll_event* events,
DescriptorInfo* di =
reinterpret_cast<DescriptorInfo*>(events[i].data.ptr);
const intptr_t old_mask = di->Mask();
- intptr_t event_mask = GetPollEvents(events[i].events, di);
+ const intptr_t event_mask = GetPollEvents(events[i].events, di);
+ LOG_INFO("HandleEvents: fd=%ld events=%ld\n", di->fd(), event_mask);
if ((event_mask & (1 << kErrorEvent)) != 0) {
di->NotifyAllDartPorts(event_mask);
- }
- event_mask &= ~(1 << kErrorEvent);
-
- LOG_INFO("HandleEvents: fd=%ld events=%ld\n", di->fd(), event_mask);
- if (event_mask != 0) {
+ UpdateEpollInstance(old_mask, di);
+ } else if (event_mask != 0) {
Dart_Port port = di->NextNotifyDartPort(event_mask);
ASSERT(port != 0);
UpdateEpollInstance(old_mask, di);
« no previous file with comments | « runtime/bin/eventhandler_android.cc ('k') | runtime/bin/eventhandler_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698