kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequest
This commit is contained in:
parent
15d2ab1b33
commit
d73d782ba7
4 changed files with 11 additions and 6 deletions
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue