Skip to content
This repository has been archived by the owner on Nov 1, 2020. It is now read-only.

Commit

Permalink
Fix Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
filipnavara committed Feb 6, 2019
1 parent c75c146 commit feb309e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ private bool JoinInternal(int millisecondsTimeout)
}
else
{
result = WaitHandle.WaitForSingleObject(waitHandle.DangerousGetHandle(), millisecondsTimeout, true);
result = WaitHandle.WaitForSingleObject(waitHandle.DangerousGetHandle(), millisecondsTimeout);
}

return result == (int)Interop.Constants.WaitObject0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ internal static unsafe int WaitMultipleIgnoringSyncContext(IntPtr[] handles, boo
{
fixed (IntPtr* pHandles = handles)
{
return WaitForMultipleObjectsIgnoringSyncContext(pHandles, handles.Length, waitAll, millisecondsTimeout, true);
return WaitForMultipleObjectsIgnoringSyncContext(pHandles, handles.Length, waitAll, millisecondsTimeout);
}
}

Expand Down Expand Up @@ -147,7 +147,7 @@ private static int WaitMultiple(
{
fixed (IntPtr* pHandles = handles)
{
return WaitForMultipleObjectsIgnoringSyncContext(pHandles, count, waitAll, millisecondsTimeout, true);
return WaitForMultipleObjectsIgnoringSyncContext(pHandles, count, waitAll, millisecondsTimeout);
}
}
}
Expand Down

0 comments on commit feb309e

Please sign in to comment.