using namespace lldb;
using namespace lldb_private;
using namespace lldb_private::platform_linux;
-using namespace lldb_private::process_linux;
static uint32_t g_initialize_count = 0;
return Error("exe_module_sp could not be resolved for %s", launch_info.GetExecutableFile ().GetPath ().c_str ());
// Launch it for debugging
- error = NativeProcessLinux::LaunchProcess (
+ error = process_linux::NativeProcessLinux::LaunchProcess (
exe_module_sp.get (),
launch_info,
native_delegate,
return Error("PlatformLinux::%s (): cannot attach to a debug process when not the host", __FUNCTION__);
// Launch it for debugging
- return NativeProcessLinux::AttachToProcess (pid, native_delegate, process_sp);
+ return process_linux::NativeProcessLinux::AttachToProcess (pid, native_delegate, process_sp);
#endif
}