mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[NtUser]
- If an appication hangs other than suspended use Hung test to prevent locking the whole system. Quick fix for CORE-10078. svn path=/trunk/; revision=73876
This commit is contained in:
parent
9accb03ac7
commit
c87e532dcb
1 changed files with 1 additions and 1 deletions
|
@ -1111,7 +1111,7 @@ UpdateThreadWindows(PWND pWnd, PTHREADINFO pti, HRGN hRgn)
|
|||
}
|
||||
else
|
||||
{
|
||||
if (IsThreadSuspended(pwndTemp->head.pti))
|
||||
if (IsThreadSuspended(pwndTemp->head.pti) || MsqIsHung(pwndTemp->head.pti))
|
||||
{
|
||||
UpdateTheadChildren(pwndTemp, hRgn);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue