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



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@122836 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Plugins/Process/Linux/ProcessLinux.h b/source/Plugins/Process/Linux/ProcessLinux.h
index 522cc4b..536dd9b 100644
--- a/source/Plugins/Process/Linux/ProcessLinux.h
+++ b/source/Plugins/Process/Linux/ProcessLinux.h
@@ -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();