mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:26:10 +00:00
Bugfix for QUEUE_Signal: Always use PostEvent if no thread is waiting
on the queue.
This commit is contained in:
parent
9552483350
commit
e948930ea8
1 changed files with 1 additions and 1 deletions
|
@ -252,7 +252,7 @@ void QUEUE_Signal( HTASK16 hTask )
|
|||
}
|
||||
SYSTEM_UNLOCK();
|
||||
|
||||
if ( !wakeup && THREAD_IsWin16( THREAD_Current() ) )
|
||||
if ( !wakeup )
|
||||
PostEvent( hTask );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue