summaryrefslogtreecommitdiffstats
path: root/lldb/source/Core/State.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Core/State.cpp')
-rw-r--r--lldb/source/Core/State.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Core/State.cpp b/lldb/source/Core/State.cpp
index a68ac73092a..bf0ef3367a6 100644
--- a/lldb/source/Core/State.cpp
+++ b/lldb/source/Core/State.cpp
@@ -24,6 +24,7 @@ lldb_private::StateAsCString (StateType state)
{
case eStateInvalid: return "invalid";
case eStateUnloaded: return "unloaded";
+ case eStateConnected: return "connected";
case eStateAttaching: return "attaching";
case eStateLaunching: return "launching";
case eStateStopped: return "stopped";
@@ -50,6 +51,7 @@ lldb_private::StateIsRunningState (StateType state)
case eStateStepping:
return true;
+ case eStateConnected:
case eStateDetached:
case eStateInvalid:
case eStateUnloaded:
@@ -69,6 +71,7 @@ lldb_private::StateIsStoppedState (StateType state)
switch (state)
{
case eStateInvalid:
+ case eStateConnected:
case eStateAttaching:
case eStateLaunching:
case eStateRunning:
OpenPOWER on IntegriCloud