diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-08 15:19:36 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-08 15:19:36 +0100 |
| commit | 23f8d5e362860ff4eb1be0b8bddc666cb23c11bf (patch) | |
| tree | 831701ce306908b9c3cb34a7a0d74f94fc5a39ec /src | |
| parent | 741a874e823e9a2ac55aba0efe85d3b581009826 (diff) | |
| parent | e69204f159ee7fcd5b81085c63c3b17bebf6c5b0 (diff) | |
Merge pull request #67 from ne-foss-org/genericslibrary-header-patches
[CHORE] GenericsLibrary: pstd, swap: Free function implementations
Diffstat (limited to 'src')
| -rw-r--r-- | src/CommandLine/dbg.cpp | 4 | ||||
| -rw-r--r-- | src/DebuggerKit/src/MachContractCLI.cpp | 2 |
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."); |
