[Lldb-commits] [lldb] [lldb-dap] When sending a DAP Output Event break each message into separate lines. (PR #105456)

John Harrison via lldb-commits lldb-commits at lists.llvm.org
Wed Aug 21 13:27:34 PDT 2024


================
@@ -399,7 +399,7 @@ void SendProcessEvent(LaunchMethod launch_method) {
 // Grab any STDOUT and STDERR from the process and send it up to VS Code
 // via an "output" event to the "stdout" and "stderr" categories.
 void SendStdOutStdErr(lldb::SBProcess &process) {
-  char buffer[1024];
+  char buffer[4096];
----------------
ashgti wrote:

Moved this into a constant.

https://github.com/llvm/llvm-project/pull/105456


More information about the lldb-commits mailing list