This commit is contained in:
Radosław Gliński 2025-01-17 22:35:24 +00:00 committed by GitHub
commit b3d46ab6e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 0 deletions

View File

@ -763,6 +763,12 @@ X_STATUS XThread::Delay(uint32_t processor_mode, uint32_t alertable,
timeout_ms = uint32_t(-timeout_ticks / 10000); // Ticks -> MS
} else {
timeout_ms = 0;
// TODO(Gliniak): Check how it works, but it seems outright wrong.
// However some titles like to change priority then go to sleep with timeout
// 0.
if (priority_ <= xe::threading::ThreadPriority::kNormal) {
timeout_ms = 1;
}
}
timeout_ms = Clock::ScaleGuestDurationMillis(timeout_ms);
if (alertable) {