From e17c0019c5cf9faaa8f23e3904342c8c4faf0980 Mon Sep 17 00:00:00 2001 From: bunnei Date: Thu, 28 Dec 2017 23:30:21 -0500 Subject: kernel: Add basic support for Domain object. --- src/core/hle/kernel/sync_object.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/core/hle/kernel/sync_object.h') 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) = 0; }; -- cgit v1.2.3