From: RĂ©mi Denis-Courmont Date: Sat, 2 Jan 2010 20:58:13 +0000 (+0200) Subject: Allow more than one thread to call libvlc_wait X-Git-Tag: 1.1.0-ff~1516 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=52b3415e5273e1e8dfc3431f154109928ae82488;p=vlc Allow more than one thread to call libvlc_wait --- diff --git a/src/libvlc.c b/src/libvlc.c index b39fbf2af6..2997f7af10 100644 --- a/src/libvlc.c +++ b/src/libvlc.c @@ -1208,7 +1208,7 @@ void libvlc_Quit( libvlc_int_t *p_libvlc ) vlc_mutex_lock( &exit_lock ); vlc_object_kill( p_libvlc ); - vlc_cond_signal( &priv->exiting ); + vlc_cond_broadcast( &priv->exiting ); vlc_mutex_unlock( &exit_lock ); }