[Lldb-commits] [lldb] [lldb-dap] Add process picker command to VS Code extension (PR #128943)
Matthew Bastien via lldb-commits
lldb-commits at lists.llvm.org
Thu Mar 6 15:48:20 PST 2025
================
@@ -27,9 +28,14 @@ export class LinuxProcessTree extends BaseProcessTree {
return;
}
+ const command = line.slice(commandOffset, argumentsOffset).trim();
+ if (command === "-") {
----------------
matthewbastien wrote:
Added the comment. When `ps` doesn't know where the executable is located it prints `-`.
https://github.com/llvm/llvm-project/pull/128943
More information about the lldb-commits
mailing list