Skip to content
Snippets Groups Projects
Unverified Commit 095c8d99 authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #1447 from lioncash/mutex

kernel/mutex: Amend behavior of TransferMutexOwnership()
parents e6ee31a8 6ddf8f34
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ static std::pair<SharedPtr<Thread>, u32> GetHighestPriorityMutexWaitingThread(
/// Update the mutex owner field of all threads waiting on the mutex to point to the new owner.
static void TransferMutexOwnership(VAddr mutex_addr, SharedPtr<Thread> current_thread,
SharedPtr<Thread> new_owner) {
const auto& threads = current_thread->GetMutexWaitingThreads();
const auto threads = current_thread->GetMutexWaitingThreads();
for (const auto& thread : threads) {
if (thread->GetMutexWaitAddress() != mutex_addr)
continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment