[Lldb-commits] [lldb] [lldb-dap] Add process picker command to VS Code extension (PR #128943)
Adrian Vogelsgesang via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 28 20:31:07 PST 2025
================
@@ -0,0 +1,15 @@
+import { LinuxProcessTree } from "./linux-process-tree";
+
+function fill(prefix: string, suffix: string, length: number): string {
+ return prefix + suffix.repeat(length - prefix.length);
+}
+
+export class DarwinProcessTree extends LinuxProcessTree {
+ protected override getCommandArguments(): string[] {
+ return [
+ "-xo",
----------------
vogelsgesang wrote:
why are we not passing the `-a` flag here, but are passing it on Linux? This seems to behave differently. Is that intended?
https://github.com/llvm/llvm-project/pull/128943
More information about the lldb-commits
mailing list