summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/sync_object.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/sync_object.h')
-rw-r--r--src/core/hle/kernel/sync_object.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/kernel/sync_object.h b/src/core/hle/kernel/sync_object.h
index ce2835ca4..5d715226e 100644
--- a/src/core/hle/kernel/sync_object.h
+++ b/src/core/hle/kernel/sync_object.h
@@ -16,10 +16,10 @@ class Thread;
class SyncObject : public Object {
public:
/**
- * Handle a sync request from the emulated application.
- * @param thread Thread that initiated the request.
- * @returns ResultCode from the operation.
- */
+ * Handle a sync request from the emulated application.
+ * @param thread Thread that initiated the request.
+ * @returns ResultCode from the operation.
+ */
virtual ResultCode SendSyncRequest(SharedPtr<Thread> thread) = 0;
};