Optimize updating actor rendering entry with better thread locking that support async writes on actor update

This commit is contained in:
Wojtek Figat
2025-06-19 14:04:06 +02:00
parent 4ac870f701
commit 2e10d776e9
3 changed files with 10 additions and 10 deletions

View File

@@ -18,7 +18,7 @@ RETRY:
{
// Someone else is doing opposite operation so wait for it's end
// TODO: use ConditionVariable+CriticalSection to prevent active-waiting
Platform::Sleep(1);
Platform::Sleep(0);
goto RETRY;
}