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

on the queue.
This commit is contained in:
Ulrich Weigand 1998-10-26 10:45:13 +00:00 committed by Alexandre Julliard
parent 9552483350
commit e948930ea8
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ void QUEUE_Signal( HTASK16 hTask )
}
SYSTEM_UNLOCK();
if ( !wakeup && THREAD_IsWin16( THREAD_Current() ) )
if ( !wakeup )
PostEvent( hTask );
}