libudev: queue - watch entire directory to allow the re-use of the watch descriptor

This commit is contained in:
Kay Sievers 2014-06-27 19:54:45 +02:00
parent dc6d4ea9a6
commit 8a7a0c19ed
2 changed files with 2 additions and 2 deletions

View File

@ -245,7 +245,7 @@ _public_ int udev_queue_get_fd(struct udev_queue *udev_queue) {
if (fd < 0)
return -errno;
r = inotify_add_watch(fd, "/run/udev/queue" , IN_DELETE);
r = inotify_add_watch(fd, "/run/udev" , IN_DELETE);
if (r < 0) {
r = -errno;
close(fd);

View File

@ -135,7 +135,7 @@ static int adm_settle(struct udev *udev, int argc, char *argv[])
}
/* wake up when queue is empty */
if (poll(pfd, 1, 100) > 0 && pfd[0].revents & POLLIN)
if (poll(pfd, 1, MSEC_PER_SEC) > 0 && pfd[0].revents & POLLIN)
udev_queue_flush(queue);
}