summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/condition_variable.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-02-04 22:25:05 +0100
committerGitHub <noreply@github.com>2018-02-04 22:25:05 +0100
commit1ddc18454ed37a0defb34e60e875cdf1e963f77f (patch)
tree3e7b5c928b3edda7521154f27fb048bdeee92270 /src/core/hle/kernel/condition_variable.h
parentMerge pull request #159 from mailwl/acc0-fix (diff)
parentGetInfo: Implement IsCurrentProcessBeingDebugged. (diff)
downloadyuzu-1ddc18454ed37a0defb34e60e875cdf1e963f77f.tar
yuzu-1ddc18454ed37a0defb34e60e875cdf1e963f77f.tar.gz
yuzu-1ddc18454ed37a0defb34e60e875cdf1e963f77f.tar.bz2
yuzu-1ddc18454ed37a0defb34e60e875cdf1e963f77f.tar.lz
yuzu-1ddc18454ed37a0defb34e60e875cdf1e963f77f.tar.xz
yuzu-1ddc18454ed37a0defb34e60e875cdf1e963f77f.tar.zst
yuzu-1ddc18454ed37a0defb34e60e875cdf1e963f77f.zip
Diffstat (limited to 'src/core/hle/kernel/condition_variable.h')
-rw-r--r--src/core/hle/kernel/condition_variable.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/hle/kernel/condition_variable.h b/src/core/hle/kernel/condition_variable.h
index 0d54031cb..1c9f06769 100644
--- a/src/core/hle/kernel/condition_variable.h
+++ b/src/core/hle/kernel/condition_variable.h
@@ -19,12 +19,10 @@ public:
* Creates a condition variable.
* @param guest_addr Address of the object tracking the condition variable in guest memory. If
* specified, this condition variable will update the guest object when its state changes.
- * @param mutex_addr Optional address of a guest mutex associated with this condition variable,
- * used by the OS for implementing events.
* @param name Optional name of condition variable.
* @return The created condition variable.
*/
- static ResultVal<SharedPtr<ConditionVariable>> Create(VAddr guest_addr, VAddr mutex_addr = 0,
+ static ResultVal<SharedPtr<ConditionVariable>> Create(VAddr guest_addr,
std::string name = "Unknown");
std::string GetTypeName() const override {