forked from OSchip/llvm-project
linux: remove ProcessLinux::FindProcesses
This method only needs to be overridden in the remote debugging case, the base class handles the host case. Since we do not do remote debugging on Linux yet and there is a typo that causes a build issue, just remove this method for now. llvm-svn: 129069
This commit is contained in:
parent
7ccce98861
commit
0682ba2f2e
|
@ -191,13 +191,6 @@ PlatformLinux::~PlatformLinux()
|
|||
{
|
||||
}
|
||||
|
||||
uint32_t
|
||||
PlatformLinux:: FindProcesses const ProcessInfoMatch &match_info,
|
||||
ProcessInfoList &process_infos()
|
||||
{
|
||||
return Host:: FindProcesses (match_info, process_infos);
|
||||
}
|
||||
|
||||
bool
|
||||
PlatformLinux::GetProcessInfo (lldb::pid_t pid, ProcessInfo &process_info)
|
||||
{
|
||||
|
|
|
@ -84,10 +84,6 @@ namespace lldb_private {
|
|||
GetFile (const FileSpec &platform_file,
|
||||
const UUID* uuid, FileSpec &local_file);
|
||||
|
||||
virtual uint32_t
|
||||
FindProcesseses (const ProcessInfoMatch &match_info,
|
||||
ProcessInfoList &process_infos);
|
||||
|
||||
virtual bool
|
||||
GetProcessInfo (lldb::pid_t pid, ProcessInfo &proc_info);
|
||||
|
||||
|
|
Loading…
Reference in New Issue