summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/condition_variable.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-02-04 18:30:51 +0100
committerbunnei <bunneidev@gmail.com>2018-02-04 18:30:51 +0100
commit0b6b147939c3abd1f98ecf639fb1ee51c5a445a1 (patch)
treef1211ba8e29d7e3eae11fc64453e3e71ee4711c1 /src/core/hle/kernel/condition_variable.h
parentsvc: SharedMemory size should be 64-bits and cleanup. (diff)
downloadyuzu-0b6b147939c3abd1f98ecf639fb1ee51c5a445a1.tar
yuzu-0b6b147939c3abd1f98ecf639fb1ee51c5a445a1.tar.gz
yuzu-0b6b147939c3abd1f98ecf639fb1ee51c5a445a1.tar.bz2
yuzu-0b6b147939c3abd1f98ecf639fb1ee51c5a445a1.tar.lz
yuzu-0b6b147939c3abd1f98ecf639fb1ee51c5a445a1.tar.xz
yuzu-0b6b147939c3abd1f98ecf639fb1ee51c5a445a1.tar.zst
yuzu-0b6b147939c3abd1f98ecf639fb1ee51c5a445a1.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 {