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)
 {