mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
Remove timerfd from loop implementation
timerfd doesn't work on the BSDs, so this replaces it with a timespec for the expiry and uses a poll timeout to check the timers when needed.
This commit is contained in:
parent
f98f351a52
commit
6921fdc6d6
7 changed files with 128 additions and 65 deletions
|
@ -16,7 +16,7 @@
|
|||
|
||||
static void status_line_close_fds(struct status_line *status) {
|
||||
if (status->read_fd != -1) {
|
||||
loop_remove_event(status->bar->eventloop, status->bar->status_event);
|
||||
loop_remove_fd(status->bar->eventloop, status->read_fd);
|
||||
close(status->read_fd);
|
||||
status->read_fd = -1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue