mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 19:27:58 -05:00
hle: kernel: KThread: Decrease DummyThread priority to ensure it is never scheduled.
This commit is contained in:
@ -741,6 +741,7 @@ void KScheduler::ScheduleImpl() {
|
||||
|
||||
// We never want to schedule a dummy thread, as these are only used by host threads for locking.
|
||||
if (next_thread->GetThreadType() == ThreadType::Dummy) {
|
||||
ASSERT_MSG(false, "Dummy threads should never be scheduled!");
|
||||
next_thread = idle_thread;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user