diff options
| author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2017-07-19 14:31:19 +0000 |
|---|---|---|
| committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2017-07-19 14:31:19 +0000 |
| commit | ccbf7987a3804dfad44ba1fbfb370283f380f198 (patch) | |
| tree | 6dbecd7a3949f3ae9ebb03ba770ef9f68dd43860 /lldb/scripts | |
| parent | 1298fd907c512f10be67710d1a81a2ba9a4444d5 (diff) | |
| download | bcm5719-llvm-ccbf7987a3804dfad44ba1fbfb370283f380f198.tar.gz bcm5719-llvm-ccbf7987a3804dfad44ba1fbfb370283f380f198.zip | |
Expose hit count via SBBreakpointLocation.
Summary:
SBBreakpointLocation exposed the ignore count, but didn't expose
the hit count. Both values were exposed by SBBreakpoint and
SBWatchpoint, so this makes things a bit more consistent.
Reviewers: lldb-commits
Subscribers: lldb-commits
Differential Revision: https://reviews.llvm.org/D31283
llvm-svn: 308480
Diffstat (limited to 'lldb/scripts')
| -rw-r--r-- | lldb/scripts/interface/SBBreakpointLocation.i | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/scripts/interface/SBBreakpointLocation.i b/lldb/scripts/interface/SBBreakpointLocation.i index a3073538e67..4a5aac031b4 100644 --- a/lldb/scripts/interface/SBBreakpointLocation.i +++ b/lldb/scripts/interface/SBBreakpointLocation.i @@ -48,6 +48,9 @@ public: IsEnabled (); uint32_t + GetHitCount (); + + uint32_t GetIgnoreCount (); void |

