================
@@ -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
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits