diff options
author | Jim Ingham <jingham@apple.com> | 2011-03-31 00:15:49 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2011-03-31 00:15:49 +0000 |
commit | 3a195b7e7818e2828fba055e9397a07e71804bc6 (patch) | |
tree | fc97b901e67a00b3f6ff2a80b1edc68ebdc51f7b /lldb/source/Target/Thread.cpp | |
parent | 271efda884c23ac30d01bf8929f07df7c01a9b3b (diff) | |
download | bcm5719-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.cpp | 5 |
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 |