Kernel/Mutex: Add a missing return in Mutex::Release

Fixes a regression in #3042.
Closes #3079
master
Sebastian Valle 2017-11-05 21:31:22 +07:00 committed by GitHub
parent 8ba2de1580
commit ff17773c28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

@ -88,6 +88,8 @@ ResultCode Mutex::Release(Thread* thread) {
WakeupAllWaitingThreads();
Core::System::GetInstance().PrepareReschedule();
}
return RESULT_SUCCESS;
}
void Mutex::AddWaitingThread(SharedPtr<Thread> thread) {