mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-13 22:17:59 -05:00
Remove duplicated docs/update them for changed parameters.
This commit is contained in:
@ -27,22 +27,12 @@ public:
|
||||
std::vector<Handle> waiting_threads; ///< Threads that are waiting for the mutex
|
||||
std::string name; ///< Name of mutex (optional)
|
||||
|
||||
/**
|
||||
* Synchronize kernel object
|
||||
* @param wait Boolean wait set if current thread should wait as a result of sync operation
|
||||
* @return Result of operation, 0 on success, otherwise error code
|
||||
*/
|
||||
ResultVal<bool> SyncRequest() override {
|
||||
// TODO(bunnei): ImplementMe
|
||||
locked = true;
|
||||
return MakeResult<bool>(false);
|
||||
}
|
||||
|
||||
/**
|
||||
* Wait for kernel object to synchronize
|
||||
* @param wait Boolean wait set if current thread should wait as a result of sync operation
|
||||
* @return Result of operation, 0 on success, otherwise error code
|
||||
*/
|
||||
ResultVal<bool> WaitSynchronization() override {
|
||||
// TODO(bunnei): ImplementMe
|
||||
bool wait = locked;
|
||||
|
Reference in New Issue
Block a user