kernel: Add basic support for Domain object.

This commit is contained in:
bunnei
2017-12-28 23:30:21 -05:00
parent 834fa5db65
commit e17c0019c5
5 changed files with 112 additions and 4 deletions

View File

@ -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;
};