mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
Small changes
lwmutex completely implemented
This commit is contained in:
parent
ed40732e7b
commit
3308fefa7f
14 changed files with 259 additions and 128 deletions
|
@ -126,7 +126,11 @@ public:
|
|||
: sm(_sm)
|
||||
, tid(get_tid())
|
||||
{
|
||||
if (!tid) throw "SMutexLockerBase: invalid thread id";
|
||||
if (!tid)
|
||||
{
|
||||
ConLog.Error("SMutexLockerBase: thread id == 0");
|
||||
Emu.Pause();
|
||||
}
|
||||
sm.lock(tid);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue