Commit e948930e authored by Ulrich Weigand's avatar Ulrich Weigand Committed by Alexandre Julliard

Bugfix for QUEUE_Signal: Always use PostEvent if no thread is waiting

on the queue.
parent 95524833
......@@ -252,7 +252,7 @@ void QUEUE_Signal( HTASK16 hTask )
}
SYSTEM_UNLOCK();
if ( !wakeup && THREAD_IsWin16( THREAD_Current() ) )
if ( !wakeup )
PostEvent( hTask );
}
......
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