mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-05-04 06:46:48 -04:00
timerfd: read() returns -1 with errno == EAGAIN, not 0
When there hasn't been a timeout (or in our case, there was a timeout, but we reset the timer before we got to the read()), read() returns, not 0, but -1 with errno == EAGAIN.
This commit is contained in:
parent
6ed97a47be
commit
f28fb6c039
2 changed files with 12 additions and 20 deletions
|
|
@ -407,15 +407,13 @@ fdm_repeat(struct fdm *fdm, int fd, int events, void *data)
|
|||
wayl->kbd.repeat.fd, &expiration_count, sizeof(expiration_count));
|
||||
|
||||
if (ret < 0) {
|
||||
if (errno == EAGAIN)
|
||||
return true;
|
||||
|
||||
LOG_ERRNO("failed to read repeat key from repeat timer fd");
|
||||
return false;
|
||||
}
|
||||
|
||||
if (ret == 0) {
|
||||
/* Cancelled by other handler in *this* epoll() iteration */
|
||||
return true;
|
||||
}
|
||||
|
||||
wayl->kbd.repeat.dont_re_repeat = true;
|
||||
for (size_t i = 0; i < expiration_count; i++)
|
||||
input_repeat(wayl, wayl->kbd.repeat.key);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue