[Lldb-commits] [lldb] r122836 - in /lldb/trunk/source/Plugins/Process/Linux: ProcessLinux.cpp ProcessLinux.h

Stephen Wilson wilsons at start.ca
Tue Jan 4 13:41:32 PST 2011


Author: wilsons
Date: Tue Jan  4 15:41:31 2011
New Revision: 122836

URL: http://llvm.org/viewvc/llvm-project?rev=122836&view=rev
Log:

Update ProcessLinux method signatures to be in line with LLDB's current API.


Modified:
    lldb/trunk/source/Plugins/Process/Linux/ProcessLinux.cpp
    lldb/trunk/source/Plugins/Process/Linux/ProcessLinux.h

Modified: lldb/trunk/source/Plugins/Process/Linux/ProcessLinux.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Linux/ProcessLinux.cpp?rev=122836&r1=122835&r2=122836&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Linux/ProcessLinux.cpp (original)
+++ lldb/trunk/source/Plugins/Process/Linux/ProcessLinux.cpp Tue Jan  4 15:41:31 2011
@@ -105,6 +105,7 @@
 ProcessLinux::DoLaunch(Module *module,
                        char const *argv[],
                        char const *envp[],
+                       uint32_t launch_flags,
                        const char *stdin_path,
                        const char *stdout_path,
                        const char *stderr_path)
@@ -155,7 +156,7 @@
 }
 
 Error
-ProcessLinux::DoHalt()
+ProcessLinux::DoHalt(bool &caused_stop)
 {
     return Error(1, eErrorTypeGeneric);
 }

Modified: lldb/trunk/source/Plugins/Process/Linux/ProcessLinux.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Linux/ProcessLinux.h?rev=122836&r1=122835&r2=122836&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Linux/ProcessLinux.h (original)
+++ lldb/trunk/source/Plugins/Process/Linux/ProcessLinux.h Tue Jan  4 15:41:31 2011
@@ -66,6 +66,7 @@
     DoLaunch(lldb_private::Module *module,
              char const *argv[],
              char const *envp[],
+             uint32_t launch_flags,
              const char *stdin_path,
              const char *stdout_path,
              const char *stderr_path);
@@ -77,7 +78,7 @@
     DoResume();
 
     virtual lldb_private::Error
-    DoHalt();
+    DoHalt(bool &caused_stop);
 
     virtual lldb_private::Error
     DoDetach();





More information about the lldb-commits mailing list