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:
Stephen Wilson 2011-04-07 10:16:53 +00:00
parent 7ccce98861
commit 0682ba2f2e
2 changed files with 0 additions and 11 deletions

View File

@ -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)
{

View File

@ -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);