diff options
author | Zachary Turner <zturner@google.com> | 2015-03-03 21:51:25 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-03-03 21:51:25 +0000 |
commit | 93749ab3cfff19115bf46d6424939cfddba906cc (patch) | |
tree | 295c3c7a3aea4ff8c8103e0ea57e87fe9c82441f /lldb/source/Plugins/Process/gdb-remote | |
parent | 49cfb8166598aad9b1785c3ec614ebdf75e037f8 (diff) | |
download | bcm5719-llvm-93749ab3cfff19115bf46d6424939cfddba906cc.tar.gz bcm5719-llvm-93749ab3cfff19115bf46d6424939cfddba906cc.zip |
Further reduce the header footprint of Process.h
No functional change here, only deletes unnecessary headers
and moves one function's body from the .h file to the .cpp.
llvm-svn: 231145
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote')
3 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp index 4fb039740ef..45939f4b8f6 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp @@ -31,6 +31,7 @@ #include "lldb/Host/StringConvert.h" #include "lldb/Host/TimeValue.h" #include "lldb/Target/Target.h" +#include "lldb/Target/MemoryRegionInfo.h" // Project includes #include "Utility/StringExtractorGDBRemote.h" diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp index 833040bdf67..d3ad8380a28 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp @@ -37,6 +37,7 @@ #include "lldb/Host/StringConvert.h" #include "lldb/Host/TimeValue.h" #include "lldb/Target/FileAction.h" +#include "lldb/Target/MemoryRegionInfo.h" #include "lldb/Target/Platform.h" #include "lldb/Target/Process.h" #include "lldb/Host/common/NativeRegisterContext.h" diff --git a/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp index 5c70cb5427c..6309f7511a4 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp @@ -21,6 +21,7 @@ #include "lldb/Target/StopInfo.h" #include "lldb/Target/SystemRuntime.h" #include "lldb/Target/Target.h" +#include "lldb/Target/UnixSignals.h" #include "lldb/Target/Unwind.h" #include "ProcessGDBRemote.h" |