diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-11-01 00:19:20 +0100 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-11-24 20:08:36 +0100 |
commit | 22c86824a4e4fe8953d7104f2fbdf853d3d30c60 (patch) | |
tree | 30f8b8e1d71c08d8da53fb2ba980542aba5b4010 /src/core/hle/kernel/event.cpp | |
parent | HLE: Revamp error handling throrough the HLE code (diff) | |
download | yuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.tar yuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.tar.gz yuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.tar.bz2 yuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.tar.lz yuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.tar.xz yuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.tar.zst yuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.zip |
Diffstat (limited to 'src/core/hle/kernel/event.cpp')
-rw-r--r-- | src/core/hle/kernel/event.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/hle/kernel/event.cpp b/src/core/hle/kernel/event.cpp index 8a2925a3c..288080209 100644 --- a/src/core/hle/kernel/event.cpp +++ b/src/core/hle/kernel/event.cpp @@ -30,11 +30,6 @@ public: std::vector<Handle> waiting_threads; ///< Threads that are waiting for the event std::string name; ///< Name of event (optional) - /** - * Wait for kernel object to synchronize - * @param wait Boolean wait set if current thread should wait as a result of sync operation - * @return Result of operation, 0 on success, otherwise error code - */ ResultVal<bool> WaitSynchronization() override { bool wait = locked; if (locked) { |