mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 06:35:40 +12:00
[Kernel] Spam some more RescheduleThreads calls
This commit is contained in:
parent
24b7b7b9ca
commit
71676a79e2
1 changed files with 3 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue