forked from OSchip/llvm-project
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
This commit is contained in:
parent
c7c3cf685d
commit
bd689b9c6b
|
@ -10,7 +10,6 @@
|
|||
|
||||
#include "llvm/ADT/StringExtras.h"
|
||||
|
||||
#include "lldb/Target/Process.h"
|
||||
#include "lldb/Target/UnixSignals.h"
|
||||
#include "lldb/Utility/LLDBAssert.h"
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -17,12 +17,12 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "lldb/Target/Process.h"
|
||||
#include "lldb/Utility/ArchSpec.h"
|
||||
#include "lldb/Utility/StreamGDBRemote.h"
|
||||
#include "lldb/Utility/StructuredData.h"
|
||||
|
||||
#include "llvm/ADT/Optional.h"
|
||||
#include "llvm/Support/VersionTuple.h"
|
||||
|
||||
namespace lldb_private {
|
||||
namespace process_gdb_remote {
|
||||
|
|
|
@ -28,12 +28,12 @@
|
|||
#include "lldb/Interpreter/OptionArgParser.h"
|
||||
#include "lldb/Symbol/ObjectFile.h"
|
||||
#include "lldb/Target/Platform.h"
|
||||
#include "lldb/Target/Process.h"
|
||||
#include "lldb/Utility/Endian.h"
|
||||
#include "lldb/Utility/JSON.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/StreamGDBRemote.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
#include "lldb/Utility/StructuredData.h"
|
||||
#include "llvm/ADT/Triple.h"
|
||||
|
||||
#include "ProcessGDBRemoteLog.h"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
#include <string>
|
||||
|
||||
#include "lldb/Target/Process.h"
|
||||
#include "lldb/Host/ProcessLaunchInfo.h"
|
||||
#include "lldb/lldb-private-forward.h"
|
||||
|
||||
#include "GDBRemoteCommunicationServer.h"
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
#include "lldb/Host/Host.h"
|
||||
#include "lldb/Host/HostInfo.h"
|
||||
#include "lldb/Target/Platform.h"
|
||||
#include "lldb/Target/Process.h"
|
||||
#include "lldb/Target/UnixSignals.h"
|
||||
#include "lldb/Utility/JSON.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
|
|
|
@ -11,13 +11,14 @@
|
|||
|
||||
#include <string>
|
||||
|
||||
#include "lldb/Target/Process.h"
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/StructuredData.h"
|
||||
|
||||
class StringExtractor;
|
||||
|
||||
namespace lldb_private {
|
||||
class Process;
|
||||
|
||||
namespace process_gdb_remote {
|
||||
|
||||
class ProcessGDBRemote;
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
#include "lldb/Host/Socket.h"
|
||||
#include "lldb/Host/StringConvert.h"
|
||||
#include "lldb/Host/common/NativeProcessProtocol.h"
|
||||
#include "lldb/Target/Process.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
#include "llvm/Support/Errno.h"
|
||||
|
|
Loading…
Reference in New Issue