summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
-rw-r--r--src/core/hle/kernel/thread.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index b01779f2e..2521f883d 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -34,11 +34,6 @@ public:
34 inline bool IsWaiting() const { return (status & THREADSTATUS_WAIT) != 0; } 34 inline bool IsWaiting() const { return (status & THREADSTATUS_WAIT) != 0; }
35 inline bool IsSuspended() const { return (status & THREADSTATUS_SUSPEND) != 0; } 35 inline bool IsSuspended() const { return (status & THREADSTATUS_SUSPEND) != 0; }
36 36
37 /**
38 * Wait for kernel object to synchronize
39 * @param wait Boolean wait set if current thread should wait as a result of sync operation
40 * @return Result of operation, 0 on success, otherwise error code
41 */
42 ResultVal<bool> WaitSynchronization() override { 37 ResultVal<bool> WaitSynchronization() override {
43 if (status != THREADSTATUS_DORMANT) { 38 if (status != THREADSTATUS_DORMANT) {
44 Handle thread = GetCurrentThreadHandle(); 39 Handle thread = GetCurrentThreadHandle();