commit e0107c4dd7baec5845d16fa151b18f33159c3729
parent 8e32c4a1fb287d1a3675f3359891d909dc2b9456
Author: Scott Anderson <scott@anderso.nz>
Date: Sat, 21 Apr 2018 13:44:32 +1200
Always send POLLHUP and POLLERR with event loop
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/swaybar/event_loop.c b/swaybar/event_loop.c
@@ -118,7 +118,10 @@ void event_loop_poll() {
struct pollfd pfd = event_loop.fds.items[i];
struct event_item *item = (struct event_item *)event_loop.items->items[i];
- if (pfd.revents & pfd.events) {
+ // Always send these events
+ unsigned events = pfd.events | POLLHUP | POLLERR;
+
+ if (pfd.revents & events) {
item->cb(pfd.fd, pfd.revents, item->data);
}
}