[Lldb-commits] [PATCH] D122486: [lldb] Fix building for mingw after changes to sigtstp_handler
Martin Storsjö via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Sat Mar 26 13:34:44 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rGbc13101cf945: [lldb] Fix building for mingw after changes to sigtstp_handler (authored by mstorsjo).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D122486/new/
https://reviews.llvm.org/D122486
Files:
lldb/tools/driver/Driver.cpp
Index: lldb/tools/driver/Driver.cpp
===================================================================
--- lldb/tools/driver/Driver.cpp
+++ lldb/tools/driver/Driver.cpp
@@ -829,7 +829,7 @@
SBHostOS::ThreadCreated("<lldb.driver.main-thread>");
signal(SIGINT, sigint_handler);
-#if !defined(_MSC_VER)
+#if !defined(_WIN32)
signal(SIGPIPE, SIG_IGN);
signal(SIGWINCH, sigwinch_handler);
signal(SIGTSTP, sigtstp_handler);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D122486.418416.patch
Type: text/x-patch
Size: 435 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220326/b8a3efb4/attachment.bin>
More information about the lldb-commits
mailing list