[Lldb-commits] [lldb] r170224 - /lldb/trunk/source/Plugins/Process/POSIX/ProcessPOSIX.cpp

Andrew Kaylor andrew.kaylor at intel.com
Fri Dec 14 10:24:34 PST 2012


Author: akaylor
Date: Fri Dec 14 12:24:34 2012
New Revision: 170224

URL: http://llvm.org/viewvc/llvm-project?rev=170224&view=rev
Log:
Change crash handling to use eStateStopped rather than eStateCrashed.

Modified:
    lldb/trunk/source/Plugins/Process/POSIX/ProcessPOSIX.cpp

Modified: lldb/trunk/source/Plugins/Process/POSIX/ProcessPOSIX.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/POSIX/ProcessPOSIX.cpp?rev=170224&r1=170223&r2=170224&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/POSIX/ProcessPOSIX.cpp (original)
+++ lldb/trunk/source/Plugins/Process/POSIX/ProcessPOSIX.cpp Fri Dec 14 12:24:34 2012
@@ -353,7 +353,8 @@
         break;
 
     case ProcessMessage::eCrashMessage:
-        SetPrivateState(eStateCrashed);
+        // FIXME: Update stop reason as per bugzilla 14598
+        SetPrivateState(eStateStopped);
         break;
     }
 





More information about the lldb-commits mailing list