[Kernel] Spam some more RescheduleThreads calls

This commit is contained in:
wheremyfoodat 2023-05-01 00:27:49 +03:00
parent 24b7b7b9ca
commit 71676a79e2

View file

@ -190,6 +190,8 @@ void Kernel::releaseMutex(Mutex* moo) {
moo->lockCount = 1;
moo->ownerThread = index;
}
rescheduleThreads();
}
}
@ -326,6 +328,7 @@ void Kernel::createThread() {
regs[0] = SVCResult::Success;
regs[1] = makeThread(entrypoint, initialSP, priority, id, arg, ThreadStatus::Ready);
rescheduleThreads();
}
// void SleepThread(s64 nanoseconds)