Commit 025e3052 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

DTV: remove polling timer on Linux (fixes #8405, fixes #13979)

parent 57d784d7
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_fs.h> #include <vlc_fs.h>
#include <vlc_interrupt.h>
#include <errno.h> #include <errno.h>
#include <assert.h> #include <assert.h>
...@@ -343,7 +344,7 @@ ssize_t dvb_read (dvb_device_t *d, void *buf, size_t len) ...@@ -343,7 +344,7 @@ ssize_t dvb_read (dvb_device_t *d, void *buf, size_t len)
else else
n = 1; n = 1;
if (poll (ufd, n, 500 /* FIXME */) < 0) if (vlc_poll_i11e (ufd, n, -1) < 0)
return -1; return -1;
if (d->frontend != -1 && ufd[1].revents) if (d->frontend != -1 && ufd[1].revents)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment