mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 09:48:37 +12:00
cpu_thread compressed
This commit is contained in:
parent
9db7de29fb
commit
7a921cbdf9
10 changed files with 52 additions and 39 deletions
|
@ -73,7 +73,7 @@ void armv7_free_tls(u32 thread)
|
|||
|
||||
std::string ARMv7Thread::get_name() const
|
||||
{
|
||||
return fmt::format("ARMv7[0x%x] Thread (%s)", id, name);
|
||||
return fmt::format("ARMv7[0x%x] Thread (%s)", id, m_name);
|
||||
}
|
||||
|
||||
std::string ARMv7Thread::dump() const
|
||||
|
@ -183,7 +183,8 @@ ARMv7Thread::~ARMv7Thread()
|
|||
}
|
||||
|
||||
ARMv7Thread::ARMv7Thread(const std::string& name)
|
||||
: cpu_thread(cpu_type::arm, name)
|
||||
: cpu_thread(cpu_type::arm)
|
||||
, m_name(name)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue