mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-28 19:34:43 +01:00
orbis-kernel: umtx: fix random hangs
This commit is contained in:
parent
ddad35e1ee
commit
239d554c66
|
|
@ -48,7 +48,7 @@ uint UmtxChain::notify_n(const UmtxKey &key, sint count) {
|
|||
n++;
|
||||
count--;
|
||||
|
||||
if (it == sleep_queue.end()) {
|
||||
if (it->first != key || it == sleep_queue.end()) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue