forked from qt-creator/qt-creator
debugger: improve handling of subbreakpoints in gdb 7.2 and earlier
Change-Id: I6cd4c2a07544ea902798e2e4596bd56e634f15e3 Reviewed-on: http://codereview.qt.nokia.com/746 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -70,9 +70,9 @@ public:
|
||||
|
||||
// The only way to add a new breakpoint.
|
||||
void appendBreakpoint(const BreakpointParameters &data);
|
||||
void handleAlienBreakpoint(const BreakpointResponse &response,
|
||||
DebuggerEngine *engine);
|
||||
void insertSubBreakpoint(const BreakpointResponse &data);
|
||||
void handleAlienBreakpoint(BreakpointModelId id,
|
||||
const BreakpointResponse &response, DebuggerEngine *engine);
|
||||
void insertSubBreakpoint(BreakpointModelId id, const BreakpointResponse &data);
|
||||
void removeAlienBreakpoint(BreakpointModelId id);
|
||||
|
||||
BreakpointModelIds allBreakpointIds() const;
|
||||
@@ -143,6 +143,7 @@ public:
|
||||
const BreakpointResponse &response(BreakpointModelId id) const;
|
||||
void setResponse(BreakpointModelId id, const BreakpointResponse &data);
|
||||
bool needsChange(BreakpointModelId id) const;
|
||||
bool needsChildren(BreakpointModelId id) const;
|
||||
|
||||
// State transitions.
|
||||
void notifyBreakpointChangeAfterInsertNeeded(BreakpointModelId id);
|
||||
|
||||
Reference in New Issue
Block a user