fixed incomplete migration to _asyncLock in AsyncUtils.cs

git-svn-id: svn://svn.code.sf.net/p/processhacker/code@956 21ef857c-d57f-4fe0-8362-d861dc6d29cd
This commit is contained in:
wj32
2009-03-28 22:50:54 +00:00
parent f458e448b1
commit 776be5307c
+2 -2
View File
@@ -78,7 +78,7 @@ namespace ProcessHacker.FormHelper
while (!IsDone)
{
Monitor.Wait(this, 1000);
Monitor.Wait(_asyncLock, 1000);
}
}
@@ -95,7 +95,7 @@ namespace ProcessHacker.FormHelper
// up every second to check we didn't miss a Pulse.
while (!IsDone)
{
Monitor.Wait(this, 1000);
Monitor.Wait(_asyncLock, 1000);
}
}