aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/kernel/mutex.cpp
diff options
context:
space:
mode:
authorGravatar bunnei <bunneidev@gmail.com>2015-01-18 15:45:01 -0500
committerGravatar bunnei <bunneidev@gmail.com>2015-01-21 20:47:46 -0500
commitdde02f79af45fc01d747254eefbe680e580c3d45 (patch)
treebd91ce3b8e2db4280aaff1f00173911c32400d1d /src/core/hle/kernel/mutex.cpp
parent9412996c8f86f5da5a9052f7533b05e9780c4eb0 (diff)
Mutex: Fix a bug where the thread should not wait if it already has the mutex.
Diffstat (limited to 'src/core/hle/kernel/mutex.cpp')
-rw-r--r--src/core/hle/kernel/mutex.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/hle/kernel/mutex.cpp b/src/core/hle/kernel/mutex.cpp
index 4a1eaca3..6cd14037 100644
--- a/src/core/hle/kernel/mutex.cpp
+++ b/src/core/hle/kernel/mutex.cpp
@@ -25,6 +25,7 @@ public:
bool locked; ///< Current locked state
Handle lock_thread; ///< Handle to thread that currently has mutex
std::string name; ///< Name of mutex (optional)
+ SharedPtr<Thread> current_thread; ///< Thread that has acquired the mutex
ResultVal<bool> Wait() override;
ResultVal<bool> Acquire() override;
@@ -43,6 +44,7 @@ static MutexMap g_mutex_held_locks;
void MutexAcquireLock(Mutex* mutex, Handle thread = GetCurrentThread()->GetHandle()) {
g_mutex_held_locks.insert(std::make_pair(thread, mutex->GetHandle()));
mutex->lock_thread = thread;
+ mutex->current_thread = Kernel::g_handle_table.Get<Thread>(thread);
}
/**
@@ -132,6 +134,7 @@ Mutex* CreateMutex(Handle& handle, bool initial_locked, const std::string& name)
mutex->locked = mutex->initial_locked = initial_locked;
mutex->name = name;
+ mutex->current_thread = nullptr;
// Acquire mutex with current thread if initialized as locked...
if (mutex->locked) {
@@ -157,7 +160,7 @@ Handle CreateMutex(bool initial_locked, const std::string& name) {
}
ResultVal<bool> Mutex::Wait() {
- return MakeResult<bool>(locked);
+ return MakeResult<bool>(locked && (current_thread != GetCurrentThread()));
}
ResultVal<bool> Mutex::Acquire() {