diff options
| -rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp index ac579efd31b..63c89d002cb 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp @@ -1383,7 +1383,8 @@ GDBRemoteCommunicationServerLLGS::Handle_C(StringExtractorGDBRemote &packet) {            packet, "unexpected content after $C{signal-number}");    } -  ResumeActionList resume_actions(StateType::eStateRunning, 0); +  ResumeActionList resume_actions(StateType::eStateRunning, +                                  LLDB_INVALID_SIGNAL_NUMBER);    Status error;    // We have two branches: what to do if a continue thread is specified (in @@ -3322,4 +3323,4 @@ std::string GDBRemoteCommunicationServerLLGS::XMLEncodeAttributeValue(      }    }    return result; -}
\ No newline at end of file +}  | 

