mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-19 20:19:13 +12:00
[Kernel] ExitThread should release held mutexes
This commit is contained in:
parent
4b2c0f42ea
commit
01a7985324
3 changed files with 25 additions and 0 deletions
|
@ -168,6 +168,11 @@ Handle Kernel::makeMutex(bool locked) {
|
|||
moo->ownerThread = currentThreadIndex;
|
||||
}
|
||||
|
||||
// Push the new mutex to our list of mutex handles
|
||||
// We need a list of mutex handles so that when a thread is killed, we can look which mutexes from this list the thread owns and free them
|
||||
// Alternatively this could be a per-thread list, but I don't want to push_back and remove on every mutex lock and release
|
||||
// Since some mutexes like the APT service mutex are locked and unlocked constantly, while ExitThread is a relatively "rare" SVC
|
||||
mutexHandles.push_back(ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
@ -466,6 +471,23 @@ void Kernel::setThreadPriority() {
|
|||
void Kernel::exitThread() {
|
||||
logSVC("ExitThread\n");
|
||||
|
||||
// Find which mutexes this thread owns, release them
|
||||
for (auto handle : mutexHandles) {
|
||||
KernelObject* object = getObject(handle, KernelObjectType::Mutex);
|
||||
|
||||
// Make sure that the handle actually matches to a mutex, and if our exiting thread owns the mutex, release it
|
||||
if (object != nullptr) {
|
||||
Mutex* moo = object->getData<Mutex>();
|
||||
|
||||
if (moo->locked && moo->ownerThread == currentThreadIndex) {
|
||||
// Release the mutex by setting lock count to 1 and releasing it once. We set lock count to 1 since it's a recursive mutex
|
||||
// Therefore if its lock count was > 1, simply calling releaseMutex would not fully release it
|
||||
moo->lockCount = 1;
|
||||
releaseMutex(moo);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Remove the index of this thread from the thread indices vector
|
||||
for (int i = 0; i < threadIndices.size(); i++) {
|
||||
if (threadIndices[i] == currentThreadIndex)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue