mirror of
https://github.com/reactos/reactos.git
synced 2025-06-27 16:29:43 +00:00
- Wait_thread_proc: Pass the correct value WaitAny vice FALSE to NtWaitForMultipleObjects. Fixes INFINITE wait when running kernel32_winetest for thread.
svn path=/trunk/; revision=40917
This commit is contained in:
parent
d67caa6f8c
commit
4606a3076d
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ Wait_thread_proc(LPVOID Arg)
|
||||||
{
|
{
|
||||||
Status = NtWaitForMultipleObjects( 2,
|
Status = NtWaitForMultipleObjects( 2,
|
||||||
handles,
|
handles,
|
||||||
FALSE,
|
WaitAny,
|
||||||
alertable,
|
alertable,
|
||||||
get_nt_timeout( &timeout, Wait->Milliseconds ) );
|
get_nt_timeout( &timeout, Wait->Milliseconds ) );
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue