summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-08 15:11:13 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-08 15:11:13 +0100
commita3093cbf5746993148f1621f7f80c6d093d65dbb (patch)
treee8a62112a0f3a6937320bd26a827c0d75cad0140 /src
parent5fbec948d16f63c5847e8e27b4fafc9c081c76fd (diff)
[CHORE] GenericsLibrary: pstd, swap: Free function implementation update.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src')
-rw-r--r--src/CommandLine/dbg.cpp4
-rw-r--r--src/DebuggerKit/src/MachContractCLI.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/CommandLine/dbg.cpp b/src/CommandLine/dbg.cpp
index 3d6ea05..a4f5a94 100644
--- a/src/CommandLine/dbg.cpp
+++ b/src/CommandLine/dbg.cpp
@@ -8,10 +8,10 @@
/// @file dbg.cc
/// @brief Nectar debugger.
-CK_IMPORT_C Int32 DebuggerMachPOSIX(Int32 argc, char const* argv[]);
+CK_IMPORT_C Int32 DebuggerMach(Int32 argc, char const* argv[]);
/// @brief Debugger entrypoint.
/// @return Status code of debugger.
Int32 main(Int32 argc, char const* argv[]) {
- return DebuggerMachPOSIX(argc, argv);
+ return DebuggerMach(argc, argv);
}
diff --git a/src/DebuggerKit/src/MachContractCLI.cpp b/src/DebuggerKit/src/MachContractCLI.cpp
index a13a980..dcd8767 100644
--- a/src/DebuggerKit/src/MachContractCLI.cpp
+++ b/src/DebuggerKit/src/MachContractCLI.cpp
@@ -25,7 +25,7 @@ static Void dbgi_ctrlc_handler(std::int32_t _) {
kKeepRunning = false;
}
-NECTAR_MODULE(DebuggerMachPOSIX) {
+NECTAR_MODULE(DebuggerMach) {
pfd::notify(
"Debugger Event",
"Userland Debugger\n(C) 2025 Amlal El Mahrouss, licensed under the Apache 2.0 license.");