Mutex: Release all held mutexes when a thread exits.
This commit is contained in:
parent
e3c8e4901c
commit
64128aa61a
3 changed files with 56 additions and 22 deletions
|
@ -14,6 +14,7 @@
|
|||
#include "core/hle/hle.h"
|
||||
#include "core/hle/kernel/kernel.h"
|
||||
#include "core/hle/kernel/thread.h"
|
||||
#include "core/hle/kernel/mutex.h"
|
||||
#include "core/hle/result.h"
|
||||
#include "core/mem_map.h"
|
||||
|
||||
|
@ -156,6 +157,9 @@ ResultCode StopThread(Handle handle, const char* reason) {
|
|||
Thread* thread = g_object_pool.Get<Thread>(handle);
|
||||
if (thread == nullptr) return InvalidHandle(ErrorModule::Kernel);
|
||||
|
||||
// Release all the mutexes that this thread holds
|
||||
ReleaseThreadMutexes(handle);
|
||||
|
||||
ChangeReadyState(thread, false);
|
||||
thread->status = THREADSTATUS_DORMANT;
|
||||
for (Handle waiting_handle : thread->waiting_threads) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue