diff options
author | Greg Clayton <gclayton@apple.com> | 2010-11-18 18:52:36 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2010-11-18 18:52:36 +0000 |
commit | 4e78f60660890d36c01e882339cc3f0ddb62a993 (patch) | |
tree | d53650386e238ca07777793abdc4c51e059462ec /lldb/source/Breakpoint/BreakpointLocationCollection.cpp | |
parent | 745f9996d0b35d5dd21622c19e61f633038409b9 (diff) | |
download | bcm5719-llvm-4e78f60660890d36c01e882339cc3f0ddb62a993.tar.gz bcm5719-llvm-4e78f60660890d36c01e882339cc3f0ddb62a993.zip |
Added the ability to get more information on the SBThread's stop reason
by being able to get the data count and data. Each thread stop reason
has one or more data words that can help describe the stop. To do this
I added:
size_t
SBThread::GetStopReasonDataCount();
uint64_t
SBThread::GetStopReasonDataAtIndex(uint32_t idx);
llvm-svn: 119720
Diffstat (limited to 'lldb/source/Breakpoint/BreakpointLocationCollection.cpp')
-rw-r--r-- | lldb/source/Breakpoint/BreakpointLocationCollection.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Breakpoint/BreakpointLocationCollection.cpp b/lldb/source/Breakpoint/BreakpointLocationCollection.cpp index 870686a9e4d..e0ada3adde1 100644 --- a/lldb/source/Breakpoint/BreakpointLocationCollection.cpp +++ b/lldb/source/Breakpoint/BreakpointLocationCollection.cpp @@ -14,6 +14,7 @@ // Project includes #include "lldb/Breakpoint/BreakpointLocationCollection.h" #include "lldb/Core/ModuleList.h" +#include "lldb/Breakpoint/Breakpoint.h" #include "lldb/Breakpoint/BreakpointLocation.h" #include "lldb/Breakpoint/BreakpointLocationList.h" #include "lldb/Target/Thread.h" |