aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/kernel/mutex.h
diff options
context:
space:
mode:
authorGravatar bunnei <bunneidev@gmail.com>2015-01-20 18:33:23 -0500
committerGravatar bunnei <bunneidev@gmail.com>2015-01-21 20:48:36 -0500
commit2f3020a10247a0cb47848a6f8c19fbde50a7e0a6 (patch)
treeeb664bee7c58bd5a2e93c686d6586ac2bf42cdd1 /src/core/hle/kernel/mutex.h
parentf09806aed24b2f7de7d969cbfdb3b9d18ab90c61 (diff)
Mutex: Cleanup and remove redundant code.
Diffstat (limited to 'src/core/hle/kernel/mutex.h')
-rw-r--r--src/core/hle/kernel/mutex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/mutex.h b/src/core/hle/kernel/mutex.h
index a8ca9701..bb8778c9 100644
--- a/src/core/hle/kernel/mutex.h
+++ b/src/core/hle/kernel/mutex.h
@@ -28,6 +28,6 @@ Handle CreateMutex(bool initial_locked, const std::string& name="Unknown");
* Releases all the mutexes held by the specified thread
* @param thread Thread that is holding the mutexes
*/
-void ReleaseThreadMutexes(Handle thread);
+void ReleaseThreadMutexes(Thread* thread);
} // namespace