summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/sync_object.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2017-12-29 05:30:21 +0100
committerbunnei <bunneidev@gmail.com>2017-12-29 05:30:21 +0100
commite17c0019c5cf9faaa8f23e3904342c8c4faf0980 (patch)
tree66c9735e44cf91fadca66cfe5c7a651bdc20cf89 /src/core/hle/kernel/sync_object.h
parentkernel: Add SyncObject primitive, use it for ClientSession. (diff)
downloadyuzu-e17c0019c5cf9faaa8f23e3904342c8c4faf0980.tar
yuzu-e17c0019c5cf9faaa8f23e3904342c8c4faf0980.tar.gz
yuzu-e17c0019c5cf9faaa8f23e3904342c8c4faf0980.tar.bz2
yuzu-e17c0019c5cf9faaa8f23e3904342c8c4faf0980.tar.lz
yuzu-e17c0019c5cf9faaa8f23e3904342c8c4faf0980.tar.xz
yuzu-e17c0019c5cf9faaa8f23e3904342c8c4faf0980.tar.zst
yuzu-e17c0019c5cf9faaa8f23e3904342c8c4faf0980.zip
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;
};