mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 08:51:28 +12:00
Another try
This commit is contained in:
parent
a8b5912340
commit
652c5901f8
12 changed files with 221 additions and 208 deletions
|
@ -36,6 +36,10 @@ CPUThread::~CPUThread()
|
|||
safe_delete(m_dec);
|
||||
}
|
||||
|
||||
bool CPUThread::IsRunning() const { return m_status == Running; }
|
||||
bool CPUThread::IsPaused() const { return m_status == Paused; }
|
||||
bool CPUThread::IsStopped() const { return m_status == Stopped; }
|
||||
|
||||
void CPUThread::Close()
|
||||
{
|
||||
ThreadBase::Stop(m_sync_wait);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue