mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
wayland: wayl_flush: re-initialize fd array before each poll
This commit is contained in:
parent
11d381f0c3
commit
ae82939158
1 changed files with 13 additions and 5 deletions
18
wayland.c
18
wayland.c
|
|
@ -1004,22 +1004,30 @@ wayl_flush(struct wayland *wayl)
|
|||
{
|
||||
while (true) {
|
||||
int r = wl_display_flush(wayl->display);
|
||||
if (r >= 0)
|
||||
if (r >= 0) {
|
||||
/* Most likely code path - the flush succeed */
|
||||
return;
|
||||
}
|
||||
|
||||
if (errno == EINTR)
|
||||
if (errno == EINTR) {
|
||||
/* Unlikely */
|
||||
continue;
|
||||
}
|
||||
|
||||
if (errno != EAGAIN) {
|
||||
LOG_ERRNO("failed to flush wayland socket");
|
||||
return;
|
||||
}
|
||||
|
||||
struct pollfd fds[] = {
|
||||
{.fd = wl_display_get_fd(wayl->display), .events = POLLOUT}
|
||||
};
|
||||
/* Socket buffer is full - need to wait for it to become
|
||||
writeable again */
|
||||
assert(errno == EAGAIN);
|
||||
|
||||
while (true) {
|
||||
struct pollfd fds[] = {
|
||||
{.fd = wl_display_get_fd(wayl->display), .events = POLLOUT},
|
||||
};
|
||||
|
||||
r = poll(fds, sizeof(fds) / sizeof(fds[0]), -1);
|
||||
|
||||
if (r < 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue