From: Mike McLaughlin Date: Mon, 15 May 2017 06:56:22 +0000 (-0700) Subject: Fix minidump hang under shipping lldb 3.9.1 (#11591) X-Git-Tag: accepted/tizen/base/20180629.140029~1109^2~33 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c4db3ea4f2912288256f55d16dffe225abbb72e8;p=platform%2Fupstream%2Fcoreclr.git Fix minidump hang under shipping lldb 3.9.1 (#11591) Issue: #11590 --- diff --git a/src/debug/createdump/dumpwriter.cpp b/src/debug/createdump/dumpwriter.cpp index 9057d18..69f0ece 100644 --- a/src/debug/createdump/dumpwriter.cpp +++ b/src/debug/createdump/dumpwriter.cpp @@ -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; } }