diff options
author | Kuba Brecka <kuba.brecka@gmail.com> | 2014-09-04 01:03:18 +0000 |
---|---|---|
committer | Kuba Brecka <kuba.brecka@gmail.com> | 2014-09-04 01:03:18 +0000 |
commit | beed821ffb058c164a885f96f2308c71cc7b632c (patch) | |
tree | 934e92deb6a97470ddbe389447d1daa20f4bc719 /lldb/source/Plugins/Process/Utility/HistoryThread.h | |
parent | 13046deef35374954dcbd164ba2f56f3166648e6 (diff) | |
download | bcm5719-llvm-beed821ffb058c164a885f96f2308c71cc7b632c.tar.gz bcm5719-llvm-beed821ffb058c164a885f96f2308c71cc7b632c.zip |
ASan malloc/free history threads
Reviewed at http://reviews.llvm.org/D4596
llvm-svn: 217116
Diffstat (limited to 'lldb/source/Plugins/Process/Utility/HistoryThread.h')
-rw-r--r-- | lldb/source/Plugins/Process/Utility/HistoryThread.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/Utility/HistoryThread.h b/lldb/source/Plugins/Process/Utility/HistoryThread.h index f9a431d8340..51173c626d7 100644 --- a/lldb/source/Plugins/Process/Utility/HistoryThread.h +++ b/lldb/source/Plugins/Process/Utility/HistoryThread.h @@ -101,6 +101,18 @@ public: { m_thread_name = name; } + + virtual const char * + GetName () + { + return m_thread_name.c_str(); + } + + virtual void + SetName(const char *name) + { + m_thread_name = name; + } protected: virtual lldb::StackFrameListSP |