mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-26 13:58:10 -05:00
kernel: Add basic support for Domain object.
This commit is contained in:
@ -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;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user