Merge pull request #457 from Subv/mutex_waiters

Mutex: Do not assert when the mutex waiting threads list isn't empty on mutex release.
This commit is contained in:
bunnei 2018-05-20 23:44:44 -04:00 committed by GitHub
commit 693f78e6c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,7 +104,6 @@ ResultCode Mutex::Release(VAddr address) {
// There are no more threads waiting for the mutex, release it completely.
if (thread == nullptr) {
ASSERT(GetCurrentThread()->wait_mutex_threads.empty());
Memory::Write32(address, 0);
return RESULT_SUCCESS;
}