commit | d61182d19856ae0338feb052cfe7cd5faa632e83 | [log] [tgz] |
---|---|---|
author | Stephen Wilson <wilsons@start.ca> | Tue Jan 04 21:45:57 2011 +0000 |
committer | Stephen Wilson <wilsons@start.ca> | Tue Jan 04 21:45:57 2011 +0000 |
tree | d90951572449425cc9d4113fcda0a07e9371ec94 | |
parent | ed56002a20abc5c62010753afe969686d5b114ce [diff] [blame] |
Provide LinuxThread with an implementation of Thread::GetUnwinder. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@122841 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Plugins/Process/Linux/LinuxThread.cpp b/source/Plugins/Process/Linux/LinuxThread.cpp index b5d3b64..c4c8bf5 100644 --- a/source/Plugins/Process/Linux/LinuxThread.cpp +++ b/source/Plugins/Process/Linux/LinuxThread.cpp
@@ -108,6 +108,12 @@ return stop_info; } +Unwind * +LinuxThread::GetUnwinder() +{ + return m_unwinder_ap.get(); +} + bool LinuxThread::WillResume(lldb::StateType resume_state) {