mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-18 11:48:34 -05:00
svc: added optional name field to Event and Mutex (used for debugging)
This commit is contained in:
@ -17,7 +17,7 @@ Handle g_mutex = 0;
|
||||
void Initialize(Service::Interface* self) {
|
||||
DEBUG_LOG(OSHLE, "called");
|
||||
if (!g_mutex) {
|
||||
g_mutex = Kernel::CreateMutex(false);
|
||||
g_mutex = Kernel::CreateMutex(true, "SRV:Lock");
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user