summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/mutex.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-09-10 17:07:33 +0200
committerLioncash <mathew1800@gmail.com>2015-09-10 17:20:21 +0200
commitd3efa637b448f1be84397deab0b1355bbc901e3b (patch)
tree0e9d245bb4509b26c9544012a3d38bd5329e7e55 /src/core/hle/kernel/mutex.h
parentMerge pull request #1131 from lioncash/uninit (diff)
downloadyuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar
yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.gz
yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.bz2
yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.lz
yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.xz
yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.zst
yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.zip
Diffstat (limited to 'src/core/hle/kernel/mutex.h')
-rw-r--r--src/core/hle/kernel/mutex.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/core/hle/kernel/mutex.h b/src/core/hle/kernel/mutex.h
index d6d5328be..1746360e4 100644
--- a/src/core/hle/kernel/mutex.h
+++ b/src/core/hle/kernel/mutex.h
@@ -38,10 +38,9 @@ public:
void Acquire() override;
/**
- * Acquires the specified mutex for the specified thread
- * @param mutex Mutex that is to be acquired
- * @param thread Thread that will acquire the mutex
- */
+ * Acquires the specified mutex for the specified thread
+ * @param thread Thread that will acquire the mutex
+ */
void Acquire(SharedPtr<Thread> thread);
void Release();