diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-04-24 11:05:50 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-04-24 11:05:50 +0200 |
| commit | 81023b13dd170b0eceb1868355a600ad15abe4ea (patch) | |
| tree | 5842fc5dad9cc45d98b4c1d95275a8f81bf9d7bd /dev/LibDebugger/src | |
| parent | 8bb40ef07de5903a11d5018f70f9c55b06edf602 (diff) | |
dev, dbg: improvements on the debugger's symbol fetching.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/LibDebugger/src')
| -rw-r--r-- | dev/LibDebugger/src/POSIXMachContract.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dev/LibDebugger/src/POSIXMachContract.cc b/dev/LibDebugger/src/POSIXMachContract.cc index 4dbd7bb..1c23448 100644 --- a/dev/LibDebugger/src/POSIXMachContract.cc +++ b/dev/LibDebugger/src/POSIXMachContract.cc @@ -48,7 +48,9 @@ LIBCOMPILER_MODULE(DebuggerMachPOSIX) argv[2] != nullptr) { kPath = argv[2]; - kDebugger.Attach(kPath, argv[3], kPID); + kDebugger.SetPath(kPath); + + kStdOut << "[+] Path set to: " << kPath << "\n"; } ::signal(SIGINT, dbgi_ctrlc_handler); |
