mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 11:18:36 +12:00
declCPU removed, PPUThread& is passed as argument
Added experimental feature: passing PPUThread& to syscall
This commit is contained in:
parent
8cc09d1c91
commit
626133c0eb
15 changed files with 111 additions and 81 deletions
|
@ -243,13 +243,10 @@ void CPUThread::Stop()
|
|||
|
||||
m_status = Stopped;
|
||||
|
||||
if(CPUThread* thr = GetCurrentCPUThread())
|
||||
if(static_cast<NamedThreadBase*>(this) != GetCurrentNamedThread())
|
||||
{
|
||||
if(thr->GetId() != GetId())
|
||||
ThreadBase::Stop();
|
||||
}
|
||||
else
|
||||
ThreadBase::Stop();
|
||||
}
|
||||
|
||||
Emu.CheckStatus();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue