summaryrefslogtreecommitdiffhomepage
path: root/dev/LibDebugger/DebuggerContract.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-07-05 10:24:19 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-07-05 10:24:19 +0200
commitaf6d1735afe4b63d13ddb73f532b4a3309f527c2 (patch)
tree5ae95a116c16e990146495d30d2fd13e4474e663 /dev/LibDebugger/DebuggerContract.h
parent3539f86015f3363dcfb124aa020d3adf7345ffaa (diff)
LibDebugger: refactor! Breaking changes inside the debugger contracts.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/LibDebugger/DebuggerContract.h')
-rw-r--r--dev/LibDebugger/DebuggerContract.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/LibDebugger/DebuggerContract.h b/dev/LibDebugger/DebuggerContract.h
index 0f4bc10..c9b269f 100644
--- a/dev/LibDebugger/DebuggerContract.h
+++ b/dev/LibDebugger/DebuggerContract.h
@@ -30,7 +30,7 @@ class DebuggerContract {
public:
virtual bool Attach(std::string path, std::string argv, ProcessID& pid) noexcept = 0;
- virtual bool Breakpoint(std::string symbol) noexcept = 0;
+ virtual bool BreakAt(std::string symbol) noexcept = 0;
virtual bool Break() noexcept = 0;
virtual bool Continue() noexcept = 0;
virtual bool Detach() noexcept = 0;