summaryrefslogtreecommitdiffstats
path: root/lldb/source/Target/Thread.cpp
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2011-03-31 00:15:49 +0000
committerJim Ingham <jingham@apple.com>2011-03-31 00:15:49 +0000
commit3a195b7e7818e2828fba055e9397a07e71804bc6 (patch)
treefc97b901e67a00b3f6ff2a80b1edc68ebdc51f7b /lldb/source/Target/Thread.cpp
parent271efda884c23ac30d01bf8929f07df7c01a9b3b (diff)
downloadbcm5719-llvm-3a195b7e7818e2828fba055e9397a07e71804bc6.tar.gz
bcm5719-llvm-3a195b7e7818e2828fba055e9397a07e71804bc6.zip
Add GetFrameWithStackID to the StackFrameList and the Thread (which routes to its StackFrameList.)
llvm-svn: 128592
Diffstat (limited to 'lldb/source/Target/Thread.cpp')
-rw-r--r--lldb/source/Target/Thread.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/source/Target/Thread.cpp b/lldb/source/Target/Thread.cpp
index 95685e961f5..384d03f5e47 100644
--- a/lldb/source/Target/Thread.cpp
+++ b/lldb/source/Target/Thread.cpp
@@ -950,6 +950,11 @@ Thread::GetFrameWithConcreteFrameIndex (uint32_t unwind_idx)
return GetStackFrameList().GetFrameWithConcreteFrameIndex (unwind_idx);
}
+lldb::StackFrameSP
+Thread::GetFrameWithStackID(StackID &stack_id)
+{
+ return GetStackFrameList().GetFrameWithStackID (stack_id);
+}
lldb::StackFrameSP
OpenPOWER on IntegriCloud