mirror of
https://github.com/reactos/reactos.git
synced 2026-06-20 13:22:18 +08:00
- Terminate the wait thread if the handle was from a console.
svn path=/trunk/; revision=11149
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/* $Id: wait.c,v 1.29 2004/07/18 23:52:31 navaraf Exp $
|
||||
/* $Id: wait.c,v 1.30 2004/10/02 10:19:38 hbirr Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
@@ -105,6 +105,7 @@ WaitForSingleObjectEx(HANDLE hHandle,
|
||||
SetLastErrorByStatus (Status);
|
||||
return FALSE;
|
||||
}
|
||||
CloseWaitHandle = TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -123,7 +124,10 @@ WaitForSingleObjectEx(HANDLE hHandle,
|
||||
TimePtr);
|
||||
|
||||
if (CloseWaitHandle)
|
||||
{
|
||||
TerminateThread(hHandle, 0);
|
||||
NtClose(hHandle);
|
||||
}
|
||||
|
||||
if (HIWORD(Status))
|
||||
{
|
||||
@@ -245,7 +249,10 @@ WaitForMultipleObjectsEx(DWORD nCount,
|
||||
|
||||
for (i = 0; i < nCount; i++)
|
||||
if (FreeThisHandle[i])
|
||||
{
|
||||
TerminateThread(HandleBuffer[i], 0);
|
||||
NtClose(HandleBuffer[i]);
|
||||
}
|
||||
|
||||
RtlFreeHeap(RtlGetProcessHeap(), 0, HandleBuffer);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user