Fix minidump hang under shipping lldb 3.9.1 (#11591)
authorMike McLaughlin <mikem@microsoft.com>
Mon, 15 May 2017 06:56:22 +0000 (23:56 -0700)
committerGitHub <noreply@github.com>
Mon, 15 May 2017 06:56:22 +0000 (23:56 -0700)
Issue: #11590

src/debug/createdump/dumpwriter.cpp

index 9057d18..69f0ece 100644 (file)
@@ -209,7 +209,7 @@ DumpWriter::WriteDump()
     // Write all the thread's state and registers
     for (const ThreadInfo* thread : m_crashInfo.Threads()) 
     {
-        if (!WriteThread(*thread, 0)) {
+        if (!WriteThread(*thread, SIGABRT)) {
             return false;
         }
     }