summaryrefslogtreecommitdiffhomepage
path: root/dev/LibDebugger/src/POSIXMachContractCLI.cc
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/src/POSIXMachContractCLI.cc
parent3539f86015f3363dcfb124aa020d3adf7345ffaa (diff)
LibDebugger: refactor! Breaking changes inside the debugger contracts.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/LibDebugger/src/POSIXMachContractCLI.cc')
-rw-r--r--dev/LibDebugger/src/POSIXMachContractCLI.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/LibDebugger/src/POSIXMachContractCLI.cc b/dev/LibDebugger/src/POSIXMachContractCLI.cc
index d754643..a45b52d 100644
--- a/dev/LibDebugger/src/POSIXMachContractCLI.cc
+++ b/dev/LibDebugger/src/POSIXMachContractCLI.cc
@@ -25,7 +25,7 @@ static void dbgi_ctrlc_handler(std::int32_t _) {
kDebugger.Break();
- pfd::notify("Debugger Event", "Breakpoint hit!");
+ pfd::notify("Debugger Event", "BreakAt hit!");
kKeepRunning = false;
}
@@ -81,8 +81,8 @@ LIBCOMPILER_MODULE(DebuggerMachPOSIX) {
std::getline(std::cin, cmd);
- if (kDebugger.Breakpoint(cmd)) {
- pfd::notify("Debugger Event", "Add Breakpoint at: " + cmd);
+ if (kDebugger.BreakAt(cmd)) {
+ pfd::notify("Debugger Event", "Add BreakAt at: " + cmd);
}
}
}