[Lldb-commits] [lldb] [llvm] [lldb] Do not stop the process on SIGWINCH by default. (PR #163182)

James Y Knight via lldb-commits lldb-commits at lists.llvm.org
Tue Oct 14 20:33:29 PDT 2025


================
@@ -174,6 +174,9 @@ Changes to LLDB
 
 * LLDB can now set breakpoints, show backtraces, and display variables when
   debugging Wasm with supported runtimes (WAMR and V8).
+* LLDB no longer stops processes by default when receiving SIGWINCH signals 
+  (window resize events) on Linux. This is the default on other Unix platforms.
+  You can re-enable it using `process handle --notify=false --stop=false SIGWINCH`.
----------------
jyknight wrote:

This is backwards, it would disable not re-enable. It should read: `process handle --notify=true --stop=true SIGWINCH`.

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


More information about the lldb-commits mailing list