summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/mutex.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-21 00:33:23 +0100
committerbunnei <bunneidev@gmail.com>2015-01-22 02:48:36 +0100
commit2f3020a10247a0cb47848a6f8c19fbde50a7e0a6 (patch)
treeeb664bee7c58bd5a2e93c686d6586ac2bf42cdd1 /src/core/hle/kernel/mutex.h
parentKernel: Renamed some functions for clarity. (diff)
downloadyuzu-2f3020a10247a0cb47848a6f8c19fbde50a7e0a6.tar
yuzu-2f3020a10247a0cb47848a6f8c19fbde50a7e0a6.tar.gz
yuzu-2f3020a10247a0cb47848a6f8c19fbde50a7e0a6.tar.bz2
yuzu-2f3020a10247a0cb47848a6f8c19fbde50a7e0a6.tar.lz
yuzu-2f3020a10247a0cb47848a6f8c19fbde50a7e0a6.tar.xz
yuzu-2f3020a10247a0cb47848a6f8c19fbde50a7e0a6.tar.zst
yuzu-2f3020a10247a0cb47848a6f8c19fbde50a7e0a6.zip
Diffstat (limited to '')
-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 a8ca97014..bb8778c98 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