[Lldb-commits] [lldb] r129069 - in /lldb/trunk/source/Plugins/Platform/Linux: PlatformLinux.cpp PlatformLinux.h

Stephen Wilson wilsons at start.ca
Thu Apr 7 03:16:53 PDT 2011


Author: wilsons
Date: Thu Apr  7 05:16:53 2011
New Revision: 129069

URL: http://llvm.org/viewvc/llvm-project?rev=129069&view=rev
Log:
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.
 

Modified:
    lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.cpp
    lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.h

Modified: lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.cpp?rev=129069&r1=129068&r2=129069&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.cpp (original)
+++ lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.cpp Thu Apr  7 05:16:53 2011
@@ -191,13 +191,6 @@
 {
 }
 
-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)
 {

Modified: lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.h?rev=129069&r1=129068&r2=129069&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.h (original)
+++ lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.h Thu Apr  7 05:16:53 2011
@@ -84,10 +84,6 @@
         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);
 





More information about the lldb-commits mailing list