diff options
author | Zachary Turner <zturner@google.com> | 2019-03-06 18:20:23 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2019-03-06 18:20:23 +0000 |
commit | a89ce43cec5ee6aa621173a5cba716d7d734ddd1 (patch) | |
tree | b5b24a255ce2d7efdd2cb9a9621f38f4be01f9f4 /lldb/source/Plugins/Process/gdb-remote | |
parent | c01140ef1ff66869d4ea9465c3cd198d82d30cab (diff) | |
download | bcm5719-llvm-a89ce43cec5ee6aa621173a5cba716d7d734ddd1.tar.gz bcm5719-llvm-a89ce43cec5ee6aa621173a5cba716d7d734ddd1.zip |
Resubmit "Don't include UnixSignals.h from Host."
This was reverted because it breaks the GreenDragon bot, but
the reason for the breakage is lost, so I'm resubmitting this
now so we can find out what the problem is.
llvm-svn: 355528
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp index 808299120c3..e19eb23ced5 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp @@ -398,7 +398,7 @@ GDBRemoteCommunicationServerPlatform::Handle_jSignalsInfo( StringExtractorGDBRemote &packet) { StructuredData::Array signal_array; - const auto &signals = Host::GetUnixSignals(); + lldb::UnixSignalsSP signals = UnixSignals::CreateForHost(); for (auto signo = signals->GetFirstSignalNumber(); signo != LLDB_INVALID_SIGNAL_NUMBER; signo = signals->GetNextSignalNumber(signo)) { |