diff options
| author | 2014-10-31 21:19:20 -0200 | |
|---|---|---|
| committer | 2014-11-24 17:08:36 -0200 | |
| 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.gz yuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.tar.xz yuzu-22c86824a4e4fe8953d7104f2fbdf853d3d30c60.zip | |
Remove duplicated docs/update them for changed parameters.
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: | |||
| 30 | std::vector<Handle> waiting_threads; ///< Threads that are waiting for the event | 30 | std::vector<Handle> waiting_threads; ///< Threads that are waiting for the event |
| 31 | std::string name; ///< Name of event (optional) | 31 | std::string name; ///< Name of event (optional) |
| 32 | 32 | ||
| 33 | /** | ||
| 34 | * Wait for kernel object to synchronize | ||
| 35 | * @param wait Boolean wait set if current thread should wait as a result of sync operation | ||
| 36 | * @return Result of operation, 0 on success, otherwise error code | ||
| 37 | */ | ||
| 38 | ResultVal<bool> WaitSynchronization() override { | 33 | ResultVal<bool> WaitSynchronization() override { |
| 39 | bool wait = locked; | 34 | bool wait = locked; |
| 40 | if (locked) { | 35 | if (locked) { |