2014-05-21 04:03:45 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 08:49:13 +00:00
|
|
|
// Refer to the license.txt file included.
|
2014-05-21 04:03:45 +01:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
|
|
|
|
2015-01-31 21:22:40 +00:00
|
|
|
#include <boost/range/algorithm_ext/erase.hpp>
|
|
|
|
|
2015-05-06 08:06:12 +01:00
|
|
|
#include "common/assert.h"
|
2014-05-21 04:03:45 +01:00
|
|
|
|
|
|
|
#include "core/hle/kernel/kernel.h"
|
2014-05-30 04:31:01 +01:00
|
|
|
#include "core/hle/kernel/mutex.h"
|
2014-05-21 04:03:45 +01:00
|
|
|
#include "core/hle/kernel/thread.h"
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2014-12-07 20:44:21 +00:00
|
|
|
/**
|
|
|
|
* Resumes a thread waiting for the specified mutex
|
|
|
|
* @param mutex The mutex that some thread is waiting on
|
|
|
|
*/
|
2015-01-11 03:20:49 +00:00
|
|
|
static void ResumeWaitingThread(Mutex* mutex) {
|
2015-01-23 01:12:19 +00:00
|
|
|
// Reset mutex lock thread handle, nothing is waiting
|
2015-02-10 03:06:09 +00:00
|
|
|
mutex->lock_count = 0;
|
2015-01-23 01:12:19 +00:00
|
|
|
mutex->holding_thread = nullptr;
|
2015-06-08 04:39:37 +01:00
|
|
|
mutex->WakeupAllWaitingThreads();
|
2014-05-21 04:03:45 +01:00
|
|
|
}
|
|
|
|
|
2015-01-20 23:33:23 +00:00
|
|
|
void ReleaseThreadMutexes(Thread* thread) {
|
2015-01-31 21:22:40 +00:00
|
|
|
for (auto& mtx : thread->held_mutexes) {
|
|
|
|
ResumeWaitingThread(mtx.get());
|
2014-12-07 20:44:21 +00:00
|
|
|
}
|
2015-01-31 21:22:40 +00:00
|
|
|
thread->held_mutexes.clear();
|
2014-12-07 20:44:21 +00:00
|
|
|
}
|
|
|
|
|
2016-09-19 02:01:46 +01:00
|
|
|
Mutex::Mutex() {}
|
|
|
|
Mutex::~Mutex() {}
|
2015-02-01 00:56:59 +00:00
|
|
|
|
2015-02-01 02:14:40 +00:00
|
|
|
SharedPtr<Mutex> Mutex::Create(bool initial_locked, std::string name) {
|
2015-01-23 01:12:19 +00:00
|
|
|
SharedPtr<Mutex> mutex(new Mutex);
|
2014-05-21 04:03:45 +01:00
|
|
|
|
2015-02-10 03:06:09 +00:00
|
|
|
mutex->lock_count = 0;
|
2015-01-23 01:12:19 +00:00
|
|
|
mutex->name = std::move(name);
|
2015-01-20 23:33:23 +00:00
|
|
|
mutex->holding_thread = nullptr;
|
2014-05-21 04:03:45 +01:00
|
|
|
|
|
|
|
// Acquire mutex with current thread if initialized as locked...
|
2015-01-23 01:12:19 +00:00
|
|
|
if (initial_locked)
|
|
|
|
mutex->Acquire();
|
2014-05-21 04:03:45 +01:00
|
|
|
|
2015-02-01 02:14:40 +00:00
|
|
|
return mutex;
|
2014-05-21 04:03:45 +01:00
|
|
|
}
|
|
|
|
|
2015-01-20 23:16:45 +00:00
|
|
|
bool Mutex::ShouldWait() {
|
2015-04-03 23:40:16 +01:00
|
|
|
auto thread = GetCurrentThread();
|
|
|
|
bool wait = lock_count > 0 && holding_thread != thread;
|
|
|
|
|
|
|
|
// If the holding thread of the mutex is lower priority than this thread, that thread should
|
|
|
|
// temporarily inherit this thread's priority
|
|
|
|
if (wait && thread->current_priority < holding_thread->current_priority)
|
|
|
|
holding_thread->BoostPriority(thread->current_priority);
|
|
|
|
|
|
|
|
return wait;
|
2015-01-18 03:23:49 +00:00
|
|
|
}
|
|
|
|
|
2015-01-20 23:16:45 +00:00
|
|
|
void Mutex::Acquire() {
|
2015-01-23 01:12:19 +00:00
|
|
|
Acquire(GetCurrentThread());
|
|
|
|
}
|
|
|
|
|
2015-02-01 01:26:16 +00:00
|
|
|
void Mutex::Acquire(SharedPtr<Thread> thread) {
|
2015-01-21 01:16:47 +00:00
|
|
|
ASSERT_MSG(!ShouldWait(), "object unavailable!");
|
2015-01-23 01:12:19 +00:00
|
|
|
|
2015-02-10 03:06:09 +00:00
|
|
|
// Actually "acquire" the mutex only if we don't already have it...
|
|
|
|
if (lock_count == 0) {
|
|
|
|
thread->held_mutexes.insert(this);
|
|
|
|
holding_thread = std::move(thread);
|
|
|
|
}
|
2015-01-23 01:12:19 +00:00
|
|
|
|
2015-02-10 03:06:09 +00:00
|
|
|
lock_count++;
|
2015-01-23 01:12:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Mutex::Release() {
|
2015-02-10 03:06:09 +00:00
|
|
|
// Only release if the mutex is held...
|
|
|
|
if (lock_count > 0) {
|
|
|
|
lock_count--;
|
|
|
|
|
|
|
|
// Yield to the next thread only if we've fully released the mutex...
|
|
|
|
if (lock_count == 0) {
|
|
|
|
holding_thread->held_mutexes.erase(this);
|
|
|
|
ResumeWaitingThread(this);
|
|
|
|
}
|
|
|
|
}
|
2014-12-07 20:57:28 +00:00
|
|
|
}
|
2015-01-20 23:16:45 +00:00
|
|
|
|
2014-05-21 04:03:45 +01:00
|
|
|
} // namespace
|