summaryrefslogtreecommitdiffhomepage
path: root/dev/LibDebugger/src/NeKernelContract.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/NeKernelContract.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/NeKernelContract.cc')
-rw-r--r--dev/LibDebugger/src/NeKernelContract.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/dev/LibDebugger/src/NeKernelContract.cc b/dev/LibDebugger/src/NeKernelContract.cc
index bc93a46..075a1cb 100644
--- a/dev/LibDebugger/src/NeKernelContract.cc
+++ b/dev/LibDebugger/src/NeKernelContract.cc
@@ -19,11 +19,12 @@ NeKernelContract::NeKernelContract() = default;
NeKernelContract::~NeKernelContract() = default;
-bool NeKernelContract::Attach(LibCompiler::STLString path, LibCompiler::STLString argv, ProcessID& pid) noexcept {
+bool NeKernelContract::Attach(LibCompiler::STLString path, LibCompiler::STLString argv,
+ ProcessID& pid) noexcept {
return false;
}
-bool NeKernelContract::Breakpoint(LibCompiler::STLString symbol) noexcept {
+bool NeKernelContract::BreakAt(LibCompiler::STLString symbol) noexcept {
return false;
}