mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-10 16:28:15 -05:00
kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequest
This commit is contained in:
@ -23,6 +23,11 @@ public:
|
||||
bool locked; ///< Current locked state
|
||||
Handle lock_thread; ///< Handle to thread that currently has mutex
|
||||
std::vector<Handle> waiting_threads; ///< Threads that are waiting for the mutex
|
||||
|
||||
/// Synchronize kernel object
|
||||
Result SyncRequest() {
|
||||
return 0;
|
||||
}
|
||||
};
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
Reference in New Issue
Block a user