diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2019-05-02 18:15:03 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2019-05-02 18:15:03 +0000 |
commit | bd689b9c6b8112d08cd2f4763acae3bc8f9edfbb (patch) | |
tree | 00abc30c7f5b1d195b08adc8435eb718e05156f5 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp | |
parent | c7c3cf685d2407a430b0e6d7f925709b2cb1d38f (diff) | |
download | bcm5719-llvm-bd689b9c6b8112d08cd2f4763acae3bc8f9edfbb.tar.gz bcm5719-llvm-bd689b9c6b8112d08cd2f4763acae3bc8f9edfbb.zip |
gdb-remote: reduce some inclusion of Target/Process.h
Reduce the inclusion of Target/Process.h to help isolate why Process is being
preserved during the build of `lldb-server`.
llvm-svn: 359811
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp index c5a449783bd..31af1cd26b7 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp @@ -19,13 +19,14 @@ #include "lldb/Host/Host.h" #include "lldb/Host/HostInfo.h" #include "lldb/Host/Pipe.h" +#include "lldb/Host/ProcessLaunchInfo.h" #include "lldb/Host/Socket.h" #include "lldb/Host/StringConvert.h" #include "lldb/Host/ThreadLauncher.h" #include "lldb/Host/common/TCPSocket.h" #include "lldb/Host/posix/ConnectionFileDescriptorPosix.h" #include "lldb/Target/Platform.h" -#include "lldb/Target/Process.h" +#include "lldb/Utility/Event.h" #include "lldb/Utility/FileSpec.h" #include "lldb/Utility/Log.h" #include "lldb/Utility/RegularExpression.h" |