Skip to content
Snippets Groups Projects
Commit 9fcd2bf6 authored by bunnei's avatar bunnei
Browse files

mutex: Remove unused call to VerifyGuestState.

parent db3a5251
No related branches found
No related tags found
No related merge requests found
...@@ -42,9 +42,6 @@ SharedPtr<Mutex> Mutex::Create(SharedPtr<Kernel::Thread> holding_thread, VAddr g ...@@ -42,9 +42,6 @@ SharedPtr<Mutex> Mutex::Create(SharedPtr<Kernel::Thread> holding_thread, VAddr g
// Mutexes are referenced by guest address, so track this in the kernel // Mutexes are referenced by guest address, so track this in the kernel
g_object_address_table.Insert(guest_addr, mutex); g_object_address_table.Insert(guest_addr, mutex);
// Verify that the created mutex matches the guest state for the mutex
mutex->VerifyGuestState();
return mutex; return mutex;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment