diff options
Diffstat (limited to 'include/lldb/Breakpoint/BreakpointSite.h')
-rw-r--r-- | include/lldb/Breakpoint/BreakpointSite.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/lldb/Breakpoint/BreakpointSite.h b/include/lldb/Breakpoint/BreakpointSite.h index 1d2cbea18f9f..c6dbef781f22 100644 --- a/include/lldb/Breakpoint/BreakpointSite.h +++ b/include/lldb/Breakpoint/BreakpointSite.h @@ -259,6 +259,12 @@ public: private: friend class Process; friend class BreakpointLocation; + // The StopInfoBreakpoint knows when it is processing a hit for a thread for a site, so let it be the + // one to manage setting the location hit count once and only once. + friend class StopInfoBreakpoint; + + void + BumpHitCounts(); //------------------------------------------------------------------ /// The method removes the owner at \a break_loc_id from this breakpoint list. |