diff options
Diffstat (limited to 'lldb/tools/debugserver/source/MacOSX/MachThread.h')
-rw-r--r-- | lldb/tools/debugserver/source/MacOSX/MachThread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/tools/debugserver/source/MacOSX/MachThread.h b/lldb/tools/debugserver/source/MacOSX/MachThread.h index 758bbf3b360..1634522fde4 100644 --- a/lldb/tools/debugserver/source/MacOSX/MachThread.h +++ b/lldb/tools/debugserver/source/MacOSX/MachThread.h @@ -109,7 +109,7 @@ public: const char *GetBasicInfoAsString() const; const char *GetName(); - DNBArchProtocol *GetArchProtocol() { return m_arch_ap.get(); } + DNBArchProtocol *GetArchProtocol() { return m_arch_up.get(); } ThreadInfo::QoS GetRequestedQoS(nub_addr_t tsd, uint64_t dti_qos_class_index); nub_addr_t GetPThreadT(); @@ -146,7 +146,7 @@ protected: MachException::Data m_stop_exception; // The best exception that describes why // this thread is stopped std::unique_ptr<DNBArchProtocol> - m_arch_ap; // Arch specific information for register state and more + m_arch_up; // Arch specific information for register state and more const DNBRegisterSetInfo *m_reg_sets; // Register set information for this thread nub_size_t m_num_reg_sets; |