diff options
| author | bunnei <bunneidev@gmail.com> | 2017-12-28 23:30:21 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2017-12-28 23:30:21 -0500 |
| commit | e17c0019c5cf9faaa8f23e3904342c8c4faf0980 (patch) | |
| tree | 66c9735e44cf91fadca66cfe5c7a651bdc20cf89 /src/core/hle/kernel/sync_object.h | |
| parent | 834fa5db65ab3bc2e05474e280f5a0a73be7411e (diff) | |
kernel: Add basic support for Domain object.
Diffstat (limited to 'src/core/hle/kernel/sync_object.h')
| -rw-r--r-- | src/core/hle/kernel/sync_object.h | 8 |
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; }; |
