diff options
| author | Pavel Labath <labath@google.com> | 2017-12-11 10:09:14 +0000 |
|---|---|---|
| committer | Pavel Labath <labath@google.com> | 2017-12-11 10:09:14 +0000 |
| commit | 07d6f881e7dee93771f8516e6e600abda29dac70 (patch) | |
| tree | 99b496bd183b5e19f52d42a15cbd43c1bacabf3e /lldb/source/Plugins/Platform/Linux | |
| parent | 390b4879940edd78ab00d535917014df3a43bec4 (diff) | |
| download | bcm5719-llvm-07d6f881e7dee93771f8516e6e600abda29dac70.tar.gz bcm5719-llvm-07d6f881e7dee93771f8516e6e600abda29dac70.zip | |
Move PseudoTerminal to the lldb_private namespace
lldb_utility doesn't make sense, as it is no longer even living in the
"utility" module.
llvm-svn: 320346
Diffstat (limited to 'lldb/source/Plugins/Platform/Linux')
| -rw-r--r-- | lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp b/lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp index e26cdcd32aa..8186eae0e8c 100644 --- a/lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp +++ b/lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp @@ -372,7 +372,7 @@ PlatformLinux::DebugProcess(ProcessLaunchInfo &launch_info, Debugger &debugger, // Hook up process PTY if we have one (which we should for local debugging // with llgs). int pty_fd = launch_info.GetPTY().ReleaseMasterFileDescriptor(); - if (pty_fd != lldb_utility::PseudoTerminal::invalid_fd) { + if (pty_fd != PseudoTerminal::invalid_fd) { process_sp->SetSTDIOFileDescriptor(pty_fd); LLDB_LOG(log, "hooked up STDIO pty to process"); } else |

