[vlc-devel] [PATCH] missing: handle vlc_poll()

Rémi Denis-Courmont remi at remlab.net
Mon Jan 23 16:02:53 CET 2012


   Hello,

On Monday 23 January 2012, Pierre Ynard wrote:
> diff --git a/src/missing.c b/src/missing.c
> index f630aa4..a4d0cc4 100644
> --- a/src/missing.c
> +++ b/src/missing.c
> @@ -472,3 +472,17 @@ ml_person_t*  ml_GetPersonsFromMedia( media_library_t*
> p_ml, return NULL;
>  }
>  #endif /* !MEDIA_LIBRARY */
> +
> +#ifdef HAVE_POLL
> +# include <vlc_network.h>
> +
> +struct pollfd;
> +
> +int vlc_poll (struct pollfd *fds, unsigned nfds, int timeout)
> +{
> +    (void)fds; (void)nfds; (void)timeout;
> +    assert (0);
> +}

I would think missing is about features missing at run-time. This is not run-
time and this is also not a missing feature.

-- 
Rémi Denis-Courmont
http://www.remlab.info



More information about the vlc-devel mailing list