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

Peter Collingbourne peter at pcc.me.uk
Sun Nov 20 16:10:14 PST 2011


Author: pcc
Date: Sun Nov 20 18:10:14 2011
New Revision: 145020

URL: http://llvm.org/viewvc/llvm-project?rev=145020&view=rev
Log:
Update PlatformLinux::Attach signature.

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=145020&r1=145019&r2=145020&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.cpp (original)
+++ lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.cpp Sun Nov 20 18:10:14 2011
@@ -249,7 +249,7 @@
 }
 
 lldb::ProcessSP
-PlatformLinux::Attach(lldb::pid_t pid,
+PlatformLinux::Attach(ProcessAttachInfo &attach_info,
                       Debugger &debugger,
                       Target *target,
                       Listener &listener,

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=145020&r1=145019&r2=145020&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.h (original)
+++ lldb/trunk/source/Plugins/Platform/Linux/PlatformLinux.h Sun Nov 20 18:10:14 2011
@@ -95,8 +95,8 @@
                                          BreakpointSite *bp_site);
 
         virtual lldb::ProcessSP
-        Attach(lldb::pid_t pid, Debugger &debugger, Target *target,
-               Listener &listener, Error &error);
+        Attach(ProcessAttachInfo &attach_info, Debugger &debugger,
+               Target *target, Listener &listener, Error &error);
 
     protected:
         





More information about the lldb-commits mailing list