diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-09 03:12:13 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-01-09 03:12:56 +0100 |
commit | 9fcd2bf672e6adfbf0e2e2e3e798c7f5a6549e71 (patch) | |
tree | 053733f2a551d2e1ada0468d72fe37bd542ef565 /src/core/hle/kernel/mutex.cpp | |
parent | Kernel: Actually wake up the requested number of threads in Semaphore::Release. (diff) | |
download | yuzu-9fcd2bf672e6adfbf0e2e2e3e798c7f5a6549e71.tar yuzu-9fcd2bf672e6adfbf0e2e2e3e798c7f5a6549e71.tar.gz yuzu-9fcd2bf672e6adfbf0e2e2e3e798c7f5a6549e71.tar.bz2 yuzu-9fcd2bf672e6adfbf0e2e2e3e798c7f5a6549e71.tar.lz yuzu-9fcd2bf672e6adfbf0e2e2e3e798c7f5a6549e71.tar.xz yuzu-9fcd2bf672e6adfbf0e2e2e3e798c7f5a6549e71.tar.zst yuzu-9fcd2bf672e6adfbf0e2e2e3e798c7f5a6549e71.zip |
Diffstat (limited to 'src/core/hle/kernel/mutex.cpp')
-rw-r--r-- | src/core/hle/kernel/mutex.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/hle/kernel/mutex.cpp b/src/core/hle/kernel/mutex.cpp index 0ee92a3e3..4e86eb918 100644 --- a/src/core/hle/kernel/mutex.cpp +++ b/src/core/hle/kernel/mutex.cpp @@ -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 g_object_address_table.Insert(guest_addr, mutex); - // Verify that the created mutex matches the guest state for the mutex - mutex->VerifyGuestState(); - return mutex; } |