mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-05 22:55:41 +13:00
More address arbiter fixes
This commit is contained in:
parent
59dd4433cf
commit
ee24158d32
2 changed files with 2 additions and 11 deletions
|
@ -106,8 +106,9 @@ void Kernel::signalArbiter(u32 waitingAddress, s32 threadCount) {
|
|||
// Wake threads with the highest priority threads being woken up first
|
||||
for (auto index : threadIndices) {
|
||||
Thread& t = threads[index];
|
||||
if (t.status == ThreadStatus::WaitArbiter && t.waitingAddress == waitingAddress) {
|
||||
if ((t.status == ThreadStatus::WaitArbiter || t.status == ThreadStatus::WaitArbiterTimeout) && t.waitingAddress == waitingAddress) {
|
||||
t.status = ThreadStatus::Ready;
|
||||
t.gprs[0] = Result::Success; // Return that the arbiter was actually signalled and that we didn't timeout
|
||||
count += 1;
|
||||
|
||||
// Check if we've reached the max number of. If count < 0 then all threads are released.
|
||||
|
|
|
@ -327,11 +327,6 @@ int Kernel::wakeupOneThread(u64 waitlist, Handle handle) {
|
|||
}
|
||||
break;
|
||||
|
||||
case ThreadStatus::WaitArbiterTimeout:
|
||||
t.status = ThreadStatus::Ready;
|
||||
t.gprs[0] = Result::Success; // The thread did not timeout, so write success to r0
|
||||
break;
|
||||
|
||||
case ThreadStatus::WaitSyncAll:
|
||||
Helpers::panic("WakeupOneThread: Thread on WaitSyncAll");
|
||||
break;
|
||||
|
@ -366,11 +361,6 @@ void Kernel::wakeupAllThreads(u64 waitlist, Handle handle) {
|
|||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case ThreadStatus::WaitArbiterTimeout:
|
||||
t.status = ThreadStatus::Ready;
|
||||
t.gprs[0] = Result::Success; // The thread did not timeout, so write success to r0
|
||||
break;
|
||||
|
||||
case ThreadStatus::WaitSyncAll:
|
||||
Helpers::panic("WakeupAllThreads: Thread on WaitSyncAll");
|
||||
|
|
Loading…
Add table
Reference in a new issue