debugger: introduce enum for breakpoint states

This commit is contained in:
hjk
2010-11-08 18:00:57 +01:00
parent a181b45d28
commit f1dabb16a3

View File

@@ -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: