Add GetFrameWithStackID to the StackFrameList and the Thread (which routes to its StackFrameList.)

llvm-svn: 128592
diff --git a/lldb/source/Target/Thread.cpp b/lldb/source/Target/Thread.cpp
index 95685e9..384d03f 100644
--- a/lldb/source/Target/Thread.cpp
+++ b/lldb/source/Target/Thread.cpp
@@ -950,6 +950,11 @@
     return GetStackFrameList().GetFrameWithConcreteFrameIndex (unwind_idx);
 }
 
+lldb::StackFrameSP
+Thread::GetFrameWithStackID(StackID &stack_id)
+{
+    return GetStackFrameList().GetFrameWithStackID (stack_id);
+}
 
 
 lldb::StackFrameSP