Skip to content
Snippets Groups Projects
Commit f1dabb16 authored by hjk's avatar hjk
Browse files

debugger: introduce enum for breakpoint states

parent a181b45d
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,17 @@ enum BreakpointType
Watchpoint,
};
enum BreakpointState
{
BreakpointNew,
BreakpointInsertionRequested, // Inferior was told about bp, not ack'ed.
BreakpointChangeRequested,
BreakpointOk,
BreakpointRemovalRequested,
BreakpointRemoved,
BreakpointDead,
};
class BreakpointData
{
public:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment