summaryrefslogtreecommitdiffstats
path: root/lldb/source
diff options
context:
space:
mode:
authorTamas Berghammer <tberghammer@google.com>2015-03-31 10:11:04 +0000
committerTamas Berghammer <tberghammer@google.com>2015-03-31 10:11:04 +0000
commit47b11c61cab6174816929742a6a0af0a7d7f4466 (patch)
treeb96e52567904ec302e64cfe61a7bbadd2bbf58ee /lldb/source
parentdb264a6d09b04f6794e786078bf727c1c10c798a (diff)
downloadbcm5719-llvm-47b11c61cab6174816929742a6a0af0a7d7f4466.tar.gz
bcm5719-llvm-47b11c61cab6174816929742a6a0af0a7d7f4466.zip
Fix Windows build after r233679
llvm-svn: 233680
Diffstat (limited to 'lldb/source')
-rw-r--r--lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp b/lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp
index 7497c52511f..6125f98d434 100644
--- a/lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp
+++ b/lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp
@@ -45,7 +45,6 @@
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;
@@ -882,7 +881,7 @@ PlatformLinux::LaunchNativeProcess (ProcessLaunchInfo &launch_info,
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,
@@ -904,6 +903,6 @@ PlatformLinux::AttachNativeProcess (lldb::pid_t pid,
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
}
OpenPOWER on IntegriCloud