mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
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:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user