[Lldb-commits] [lldb] [lldb][gdb-remote] Forward client terminal size to lldb-server (PR #201141)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Wed Jun 3 02:42:53 PDT 2026
================
@@ -174,6 +174,23 @@ class ProcessLaunchInfo : public ProcessInfo {
return m_flags.Test(lldb::eLaunchFlagDetachOnError);
}
+ /// Terminal window dimensions to use when the launcher creates a
+ /// pseudo-terminal for the inferior's stdio.
+ struct STDIOWindowSize {
+ uint16_t cols = 0;
+ uint16_t rows = 0;
+ bool IsSet() const { return cols != 0 && rows != 0; }
----------------
DavidSpickett wrote:
I don't see this being used in this PR, what is it needed for?
https://github.com/llvm/llvm-project/pull/201141
More information about the lldb-commits
mailing list