diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-05-09 00:53:13 +0200 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-27 17:36:14 +0200 |
commit | 467d43570e10b98fa33067352d35fe62ceb3cb9e (patch) | |
tree | 830b0a3b6bc7675ce3c988c86d000f1a4287214c /src/core/hle/kernel/mutex.h | |
parent | ARMInterface/Externals: Update dynarmic and fit to latest version. (diff) | |
download | yuzu-467d43570e10b98fa33067352d35fe62ceb3cb9e.tar yuzu-467d43570e10b98fa33067352d35fe62ceb3cb9e.tar.gz yuzu-467d43570e10b98fa33067352d35fe62ceb3cb9e.tar.bz2 yuzu-467d43570e10b98fa33067352d35fe62ceb3cb9e.tar.lz yuzu-467d43570e10b98fa33067352d35fe62ceb3cb9e.tar.xz yuzu-467d43570e10b98fa33067352d35fe62ceb3cb9e.tar.zst yuzu-467d43570e10b98fa33067352d35fe62ceb3cb9e.zip |
Diffstat (limited to 'src/core/hle/kernel/mutex.h')
-rw-r--r-- | src/core/hle/kernel/mutex.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/mutex.h b/src/core/hle/kernel/mutex.h index bce06ecea..3b81dc3df 100644 --- a/src/core/hle/kernel/mutex.h +++ b/src/core/hle/kernel/mutex.h @@ -29,7 +29,8 @@ public: Handle requesting_thread_handle); /// Unlocks a mutex for owner at address - std::pair<ResultCode, std::shared_ptr<Thread>> Unlock(std::shared_ptr<Thread> owner, VAddr address); + std::pair<ResultCode, std::shared_ptr<Thread>> Unlock(std::shared_ptr<Thread> owner, + VAddr address); /// Releases the mutex at the specified address. ResultCode Release(VAddr address); |