- Wait_thread_proc: Pass the correct value WaitAny vice FALSE to NtWaitForMultipleObj...
authorMichael Martin <michael.martin@reactos.org>
Thu, 14 May 2009 07:11:00 +0000 (07:11 +0000)
committerMichael Martin <michael.martin@reactos.org>
Thu, 14 May 2009 07:11:00 +0000 (07:11 +0000)
svn path=/trunk/; revision=40917

reactos/lib/rtl/wait.c

index 914d7e7..543d5a4 100644 (file)
@@ -55,7 +55,7 @@ Wait_thread_proc(LPVOID Arg)
     {
         Status = NtWaitForMultipleObjects( 2,
                                            handles,
-                                           FALSE,
+                                           WaitAny,
                                            alertable,
                                            get_nt_timeout( &timeout, Wait->Milliseconds ) );