Commit 1b6caac9 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

vlc_cond_wait() does not return any value

parent 59d12a20
...@@ -353,8 +353,6 @@ void vlc_cond_broadcast (vlc_cond_t *p_condvar) ...@@ -353,8 +353,6 @@ void vlc_cond_broadcast (vlc_cond_t *p_condvar)
* @param p_mutex mutex which is unlocked while waiting, * @param p_mutex mutex which is unlocked while waiting,
* then locked again when waking up. * then locked again when waking up.
* @param deadline <b>absolute</b> timeout * @param deadline <b>absolute</b> timeout
*
* @return 0 if the condition was signaled, an error code in case of timeout.
*/ */
void vlc_cond_wait (vlc_cond_t *p_condvar, vlc_mutex_t *p_mutex) void vlc_cond_wait (vlc_cond_t *p_condvar, vlc_mutex_t *p_mutex)
{ {
......
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