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.cpp b/source/Plugins/Process/Linux/ProcessLinux.cpp
index ce12ee9..6d7b5cf 100644
--- a/source/Plugins/Process/Linux/ProcessLinux.cpp
+++ b/source/Plugins/Process/Linux/ProcessLinux.cpp
@@ -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);
}
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();