[Lldb-commits] [lldb] [lldb-dap] Add process picker command to VS Code extension (PR #128943)
John Harrison via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 28 10:35:05 PST 2025
================
@@ -0,0 +1,38 @@
+import { ChildProcessWithoutNullStreams, spawn } from "child_process";
+import { BaseProcessTree, ProcessTreeParser } from "../base-process-tree";
+
+export class LinuxProcessTree extends BaseProcessTree {
+ protected override spawnProcess(): ChildProcessWithoutNullStreams {
+ return spawn(
+ "ps",
+ ["-axo", `pid=PID,lstart=START,comm:128=COMMAND,command=ARGUMENTS`],
+ {
+ stdio: "pipe",
+ },
----------------
ashgti wrote:
`stdio: "pipe"` is the default
https://github.com/llvm/llvm-project/pull/128943
More information about the lldb-commits
mailing list