summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-26 09:20:25 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-26 09:23:38 +0100
commit9b85b2810a64fb512d3ab35b8965db3071618223 (patch)
tree063352a1e6e3c20bba085b59c1d0700cf4d2eeb0 /src
parent7c506c9b48bbad8fd87da66882311089572dc767 (diff)
[FEAT&FIX] DebuggerKit: Fix compiler errors, update installer.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src')
-rw-r--r--src/DebuggerKit/src/NeSystem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DebuggerKit/src/NeSystem.cpp b/src/DebuggerKit/src/NeSystem.cpp
index ea3beb4..381d2db 100644
--- a/src/DebuggerKit/src/NeSystem.cpp
+++ b/src/DebuggerKit/src/NeSystem.cpp
@@ -18,7 +18,7 @@ using namespace DebuggerKit::NeKernel;
NeSystemDebugger::NeSystemDebugger() = default;
NeSystemDebugger::~NeSystemDebugger() = default;
-bool NeSystemDebugger::Attach(CompilerKit::STLString path, CompilerKit::STLString argv,
+bool NeSystemDebugger::Attach(const CompilerKit::STLString& path, const CompilerKit::STLString& argv,
ProcessID& pid) noexcept {
if (path.empty() || argv.empty()) return NO;
@@ -44,7 +44,7 @@ bool NeSystemDebugger::Attach(CompilerKit::STLString path, CompilerKit::STLStrin
return ret;
}
-bool NeSystemDebugger::BreakAt(CompilerKit::STLString symbol) noexcept {
+bool NeSystemDebugger::BreakAt(const CompilerKit::STLString& symbol) noexcept {
CompilerKit::STLString pkt = Detail::kDebugMagic;
pkt += ";SYM=\"";
pkt += symbol;