mirror of
https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
synced 2025-12-16 03:12:40 +00:00
svc: added optional name field to Event and Mutex (used for debugging)
This commit is contained in:
@@ -20,8 +20,9 @@ Result ReleaseMutex(Handle handle);
|
||||
/**
|
||||
* Creates a mutex
|
||||
* @param initial_locked Specifies if the mutex should be locked initially
|
||||
* @param name Optional name of mutex
|
||||
* @return Handle to newly created object
|
||||
*/
|
||||
Handle CreateMutex(bool initial_locked);
|
||||
Handle CreateMutex(bool initial_locked, const std::string name="Unknown");
|
||||
|
||||
} // namespace
|
||||
|
||||
Reference in New Issue
Block a user