Commit 719e739a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Win32: using a static mutex with a condition is not implemented yet

parent bc8ee31f
......@@ -279,6 +279,7 @@ void vlc_cond_wait (vlc_cond_t *p_condvar, vlc_mutex_t *p_mutex)
{
DWORD result;
assert (p_mutex->dynamic); /* TODO */
do
{
vlc_testcancel ();
......@@ -298,6 +299,7 @@ int vlc_cond_timedwait (vlc_cond_t *p_condvar, vlc_mutex_t *p_mutex,
{
DWORD result;
assert (p_mutex->dynamic); /* TODO */
do
{
vlc_testcancel ();
......
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