[*] NT build regression from Linux land
This commit is contained in:
parent
23e922a396
commit
ede223e955
@ -13,8 +13,8 @@ namespace Aurora::Loop
|
||||
bool WaitSingleBase::IsSignaled()
|
||||
{
|
||||
bool val {};
|
||||
AuUInt one {-1};
|
||||
AuUInt two {-1};
|
||||
AuUInt one {AuNumericLimits<AuUInt>::max()};
|
||||
AuUInt two {AuNumericLimits<AuUInt>::max()};
|
||||
this->OnPresleep();
|
||||
|
||||
if (this->Singular())
|
||||
@ -57,8 +57,8 @@ namespace Aurora::Loop
|
||||
bool WaitSingleBase::WaitOn(AuUInt32 timeout)
|
||||
{
|
||||
bool val {};
|
||||
AuUInt one {-1};
|
||||
AuUInt two {-1};
|
||||
AuUInt one {AuNumericLimits<AuUInt>::max()};
|
||||
AuUInt two {AuNumericLimits<AuUInt>::max()};
|
||||
this->OnPresleep();
|
||||
|
||||
if (this->Singular())
|
||||
|
Loading…
Reference in New Issue
Block a user