[vlc-commits] vlc_cond_wait() does not return any value
Rémi Denis-Courmont
git at videolan.org
Sat May 7 11:01:07 CEST 2011
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Fri May 6 15:56:49 2011 +0300| [1b6caac9a63c34e8206cfcb661dd3d54d7e6e7ca] | committer: Rémi Denis-Courmont
vlc_cond_wait() does not return any value
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1b6caac9a63c34e8206cfcb661dd3d54d7e6e7ca
---
src/posix/thread.c | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/src/posix/thread.c b/src/posix/thread.c
index f8a93dc..bd22467 100644
--- a/src/posix/thread.c
+++ b/src/posix/thread.c
@@ -353,8 +353,6 @@ void vlc_cond_broadcast (vlc_cond_t *p_condvar)
* @param p_mutex mutex which is unlocked while waiting,
* then locked again when waking up.
* @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)
{
More information about the vlc-commits
mailing list