[*] Added SMT yield down these paths

This commit is contained in:
Reece Wilson 2023-10-26 17:25:40 +01:00
parent bf49eb5fdd
commit 17ca7a6bef
3 changed files with 21 additions and 0 deletions

View File

@ -233,6 +233,13 @@ namespace Aurora::IO::Loop
{
return true;
}
else if (!uDeltaMs)
{
if (this->TryTakeSpin())
{
return true;
}
}
}
}

View File

@ -145,6 +145,13 @@ namespace Aurora::IO::Loop
{
return true;
}
else if (!uDeltaMs)
{
if (this->TryTakeSpin())
{
return true;
}
}
}
}

View File

@ -168,6 +168,13 @@ namespace Aurora::IO::Loop
{
return true;
}
else if (!uDeltaMs)
{
if (this->TryTakeSpin())
{
return true;
}
}
}
}