Fixed compilation error on Windows Phone 7 and Xbox 360 builds
git-svn-id: file:///srv/devel/repo-conversion/nusu@212 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
46cbc920b1
commit
eafb9e442b
3 changed files with 12 additions and 1 deletions
|
@ -164,7 +164,11 @@ namespace Nuclex.Support.Tracking {
|
|||
return true;
|
||||
}
|
||||
|
||||
#if WINDOWS
|
||||
return WaitHandle.WaitOne(timeoutMilliseconds, false);
|
||||
#else
|
||||
return WaitHandle.WaitOne(timeoutMilliseconds);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>Whether the transaction has ended already</summary>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue