term/wayland: use MONOTONIC timers

This commit is contained in:
Daniel Eklöf 2020-01-10 21:33:40 +01:00
parent bdc4bf2372
commit 5956faac01
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 6 additions and 6 deletions

View file

@ -730,7 +730,7 @@ wayl_init(const struct config *conf, struct fdm *fdm)
goto out;
}
wayl->kbd.repeat.fd = timerfd_create(CLOCK_BOOTTIME, TFD_CLOEXEC | TFD_NONBLOCK);
wayl->kbd.repeat.fd = timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC | TFD_NONBLOCK);
if (wayl->kbd.repeat.fd == -1) {
LOG_ERRNO("failed to create keyboard repeat timer FD");
goto out;