[Lldb-commits] [lldb] r128313 - in /lldb/trunk/source/Plugins: Platform/Linux/PlatformLinux.cpp Platform/Linux/PlatformLinux.h Process/Linux/RegisterContextLinux_i386.h Process/Linux/RegisterContextLinux_x86_64.h

Stephen Wilson wilsons at start.ca
Fri Mar 25 17:34:57 PDT 2011


Author: wilsons
Date: Fri Mar 25 19:34:57 2011
New Revision: 128313

URL: http://llvm.org/viewvc/llvm-project?rev=128313&view=rev
Log:
linux: minor updates to account for recent namespace changes


Modified:
    lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.cpp
    lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.h
    lldb/trunk/source/Plugins/Process/Linux/RegisterContextLinux_i386.h
    lldb/trunk/source/Plugins/Process/Linux/RegisterContextLinux_x86_64.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=128313&r1=128312&r2=128313&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.cpp (original)
+++ lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.cpp Fri Mar 25 19:34:57 2011
@@ -164,7 +164,8 @@
 }
 
 Error
-PlatformLinux::GetFile (const FileSpec &platform_file, FileSpec &local_file)
+PlatformLinux::GetFile (const FileSpec &platform_file, 
+                        const UUID *uuid, FileSpec &local_file)
 {
     // Default to the local case
     local_file = platform_file;
@@ -192,7 +193,7 @@
 
 uint32_t
 PlatformLinux::FindProcessesByName (const char *name_match, 
-                                    lldb::NameMatchType name_match_type,
+                                    NameMatchType name_match_type,
                                     ProcessInfoList &process_infos)
 {
     return Host::FindProcessesByName (name_match, name_match_type, process_infos);

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=128313&r1=128312&r2=128313&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.h (original)
+++ lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.h Fri Mar 25 19:34:57 2011
@@ -81,11 +81,12 @@
         GetStatus (Stream &strm);
 
         virtual Error
-        GetFile (const FileSpec &platform_file, FileSpec &local_file);
+        GetFile (const FileSpec &platform_file,
+                 const UUID* uuid, FileSpec &local_file);
 
         virtual uint32_t
         FindProcessesByName (const char *name_match, 
-                             lldb::NameMatchType name_match_type,
+                             NameMatchType name_match_type,
                              ProcessInfoList &process_infos);
 
         virtual bool

Modified: lldb/trunk/source/Plugins/Process/Linux/RegisterContextLinux_i386.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Linux/RegisterContextLinux_i386.h?rev=128313&r1=128312&r2=128313&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Linux/RegisterContextLinux_i386.h (original)
+++ lldb/trunk/source/Plugins/Process/Linux/RegisterContextLinux_i386.h Fri Mar 25 19:34:57 2011
@@ -33,13 +33,13 @@
     size_t
     GetRegisterCount();
 
-    const lldb::RegisterInfo *
+    const lldb_private::RegisterInfo *
     GetRegisterInfoAtIndex(uint32_t reg);
 
     size_t
     GetRegisterSetCount();
 
-    const lldb::RegisterSet *
+    const lldb_private::RegisterSet *
     GetRegisterSet(uint32_t set);
 
     bool

Modified: lldb/trunk/source/Plugins/Process/Linux/RegisterContextLinux_x86_64.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Linux/RegisterContextLinux_x86_64.h?rev=128313&r1=128312&r2=128313&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Linux/RegisterContextLinux_x86_64.h (original)
+++ lldb/trunk/source/Plugins/Process/Linux/RegisterContextLinux_x86_64.h Fri Mar 25 19:34:57 2011
@@ -32,13 +32,13 @@
     size_t
     GetRegisterCount();
 
-    const lldb::RegisterInfo *
+    const lldb_private::RegisterInfo *
     GetRegisterInfoAtIndex(uint32_t reg);
 
     size_t
     GetRegisterSetCount();
 
-    const lldb::RegisterSet *
+    const lldb_private::RegisterSet *
     GetRegisterSet(uint32_t set);
 
     bool





More information about the lldb-commits mailing list