breakpoints
This commit is contained in:
@@ -41,6 +41,13 @@ namespace dbgui::frontend
|
||||
std::string display_name;
|
||||
};
|
||||
|
||||
struct Breakpoint
|
||||
{
|
||||
bool removed = false;
|
||||
// TODO: srcloc
|
||||
uint64_t addr;
|
||||
};
|
||||
|
||||
Target(std::string filename);
|
||||
|
||||
TargetState state = TargetState::stopped;
|
||||
@@ -52,6 +59,7 @@ namespace dbgui::frontend
|
||||
std::vector<RegSet> reg_sets;
|
||||
std::vector<std::optional<Thread>> threads;
|
||||
std::vector<std::optional<Frame>> frames;
|
||||
std::vector<Breakpoint> breakpoints;
|
||||
|
||||
std::shared_ptr<backend::Backend> backend = nullptr;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user