diff options
author | Daniel Malea <daniel.malea@intel.com> | 2013-08-27 20:58:59 +0000 |
---|---|---|
committer | Daniel Malea <daniel.malea@intel.com> | 2013-08-27 20:58:59 +0000 |
commit | 4244cbd9be15e4185ac2effd82140bba91118f80 (patch) | |
tree | 20ab064ae38e37f29efa6b44ebdf9ec24687cf3d /lldb/source/Host/linux/Host.cpp | |
parent | e4a0cac4a82cb23a5e85b95a3bc4bd352564fb8d (diff) | |
download | bcm5719-llvm-4244cbd9be15e4185ac2effd82140bba91118f80.tar.gz bcm5719-llvm-4244cbd9be15e4185ac2effd82140bba91118f80.zip |
Enable Host::LaunchProcess on Linux
- move LaunchProcessPosixSpawn() and Host::LaunchProcess() from freebsd host plugin to common (linux/freebsd section)
- modify MonitorChildProcessThreadFunction to use pid_t from sys/types.h to avoid Linux/FreeBSD/Mac warnings when calling waitpid()
llvm-svn: 189404
Diffstat (limited to 'lldb/source/Host/linux/Host.cpp')
-rw-r--r-- | lldb/source/Host/linux/Host.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lldb/source/Host/linux/Host.cpp b/lldb/source/Host/linux/Host.cpp index 0efc89ad76d..17939ab6353 100644 --- a/lldb/source/Host/linux/Host.cpp +++ b/lldb/source/Host/linux/Host.cpp @@ -216,14 +216,6 @@ Host::GetOSVersion(uint32_t &major, return status == 3; } -Error -Host::LaunchProcess (ProcessLaunchInfo &launch_info) -{ - Error error; - assert(!"Not implemented yet!!!"); - return error; -} - lldb::DataBufferSP Host::GetAuxvData(lldb_private::Process *process) { |