mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 09:48:37 +12:00
Some fixes
This commit is contained in:
parent
3aefa2b4e1
commit
6f1e76198a
98 changed files with 2326 additions and 2348 deletions
|
@ -102,7 +102,7 @@ namespace vm
|
|||
|
||||
if (old == owner)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
throw EXCEPTION("Deadlock");
|
||||
}
|
||||
|
||||
old = nullptr;
|
||||
|
@ -117,7 +117,7 @@ namespace vm
|
|||
|
||||
if (!m_owner.compare_and_swap_test(owner, nullptr))
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
throw EXCEPTION("Lost lock");
|
||||
}
|
||||
|
||||
if (do_notify)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue