summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/Process
diff options
context:
space:
mode:
authorAndrew Kaylor <andrew.kaylor@intel.com>2012-12-14 18:24:34 +0000
committerAndrew Kaylor <andrew.kaylor@intel.com>2012-12-14 18:24:34 +0000
commit7a73251dea6a86e7b1bf8a28dfb428b43fecba22 (patch)
tree4073015d605632d288d0e60444000a09914d94f9 /lldb/source/Plugins/Process
parent7aa4a881e6c534b89c39247bbd059729c22ddef3 (diff)
downloadbcm5719-llvm-7a73251dea6a86e7b1bf8a28dfb428b43fecba22.tar.gz
bcm5719-llvm-7a73251dea6a86e7b1bf8a28dfb428b43fecba22.zip
Change crash handling to use eStateStopped rather than eStateCrashed.
llvm-svn: 170224
Diffstat (limited to 'lldb/source/Plugins/Process')
-rw-r--r--lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp b/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp
index 8001db20a72..f6b9270a366 100644
--- a/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp
+++ b/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp
@@ -353,7 +353,8 @@ ProcessPOSIX::SendMessage(const ProcessMessage &message)
break;
case ProcessMessage::eCrashMessage:
- SetPrivateState(eStateCrashed);
+ // FIXME: Update stop reason as per bugzilla 14598
+ SetPrivateState(eStateStopped);
break;
}
OpenPOWER on IntegriCloud