diff options
author | emersion <contact@emersion.fr> | 2018-11-25 18:10:01 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-11-25 18:10:01 +0100 |
commit | 814dc1dfe5bbfa47a0cfbcfe2c7dd7119b0bad7e (patch) | |
tree | bdaaf06ed6def2e4f97128077eb5afa587b9d99c | |
parent | 91bbb2a7ddded2e956c50226d0f0207cd7da550e (diff) |
swayidle: fix busy loop on writable FD
The wl_event_source_fd_update docs say:
> File descriptors are usually writable to begin with, so they do not need to
> be polled for writable until a write actually fails. When a write fails,
> the event mask can be changed to poll for readable and writable, delivering
> a dispatch callback when it is possible to write more. Once all data has
> been written, the mask can be changed to poll only for readable to avoid
> busy-looping on dispatch.
So we should only poll for WL_EVENT_WRITABLE if a write fails. I'm not yet sure
how to do this properly and Weston doesn't do it, so in the meantime I'll just
fix the busy loop. I'll ask them too.
Fixes https://github.com/swaywm/sway/issues/3190
-rw-r--r-- | swayidle/main.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/swayidle/main.c b/swayidle/main.c index 89ccf671..dd7d9de3 100644 --- a/swayidle/main.c +++ b/swayidle/main.c @@ -192,8 +192,7 @@ static void setup_sleep_listener(void) { acquire_sleep_lock(); struct wl_event_source *source = wl_event_loop_add_fd(state.event_loop, - sd_bus_get_fd(bus), WL_EVENT_READABLE | WL_EVENT_WRITABLE, - dbus_event, bus); + sd_bus_get_fd(bus), WL_EVENT_READABLE, dbus_event, bus); wl_event_source_check(source); } #endif @@ -401,10 +400,12 @@ static int display_event(int fd, uint32_t mask, void *data) { count = wl_display_dispatch_pending(state.display); wl_display_flush(state.display); } + if (count < 0) { wlr_log_errno(WLR_ERROR, "wl_display_dispatch failed, exiting"); sway_terminate(0); } + return count; } @@ -462,7 +463,7 @@ int main(int argc, char *argv[]) { wl_display_roundtrip(state.display); struct wl_event_source *source = wl_event_loop_add_fd(state.event_loop, - wl_display_get_fd(state.display), WL_EVENT_READABLE | WL_EVENT_WRITABLE, + wl_display_get_fd(state.display), WL_EVENT_READABLE, display_event, NULL); wl_event_source_check(source); |