mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 13:59:58 +00:00
Mutex: Moved ReleaseMutex iterator declaration to be inside while loop.
This commit is contained in:
parent
8cac527c94
commit
780a443b08
1 changed files with 1 additions and 2 deletions
|
@ -100,11 +100,10 @@ bool ReleaseMutexForThread(Mutex* mutex, Handle thread) {
|
||||||
bool ReleaseMutex(Mutex* mutex) {
|
bool ReleaseMutex(Mutex* mutex) {
|
||||||
MutexEraseLock(mutex);
|
MutexEraseLock(mutex);
|
||||||
bool woke_threads = false;
|
bool woke_threads = false;
|
||||||
std::vector<Handle>::iterator iter;
|
|
||||||
|
|
||||||
// Find the next waiting thread for the mutex...
|
// Find the next waiting thread for the mutex...
|
||||||
while (!woke_threads && !mutex->waiting_threads.empty()) {
|
while (!woke_threads && !mutex->waiting_threads.empty()) {
|
||||||
iter = mutex->waiting_threads.begin();
|
std::vector<Handle>::iterator iter = mutex->waiting_threads.begin();
|
||||||
woke_threads |= ReleaseMutexForThread(mutex, *iter);
|
woke_threads |= ReleaseMutexForThread(mutex, *iter);
|
||||||
mutex->waiting_threads.erase(iter);
|
mutex->waiting_threads.erase(iter);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue