mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-08 10:30:00 +00:00
ArbitrateLock: Assert that requesting_thread is current_thread.
This commit is contained in:
parent
abc4be8e0f
commit
f9c9ce2005
1 changed files with 1 additions and 0 deletions
|
@ -263,6 +263,7 @@ static ResultCode ArbitrateLock(Handle holding_thread_handle, VAddr mutex_addr,
|
||||||
SharedPtr<Thread> requesting_thread = g_handle_table.Get<Thread>(requesting_thread_handle);
|
SharedPtr<Thread> requesting_thread = g_handle_table.Get<Thread>(requesting_thread_handle);
|
||||||
|
|
||||||
ASSERT(requesting_thread);
|
ASSERT(requesting_thread);
|
||||||
|
ASSERT(requesting_thread == GetCurrentThread());
|
||||||
|
|
||||||
SharedPtr<Mutex> mutex = g_object_address_table.Get<Mutex>(mutex_addr);
|
SharedPtr<Mutex> mutex = g_object_address_table.Get<Mutex>(mutex_addr);
|
||||||
if (!mutex) {
|
if (!mutex) {
|
||||||
|
|
Loading…
Reference in a new issue