diff options
author | Quinn Pham <Quinn.Pham@ibm.com> | 2021-11-10 08:50:14 -0600 |
---|---|---|
committer | Quinn Pham <Quinn.Pham@ibm.com> | 2021-11-12 10:54:18 -0600 |
commit | 52a3ed5b93ca9aba042d87e2bb697bf0dda2e43c (patch) | |
tree | ca1b8d72d9df545bc30ad7ff3f556f2c16c2fa93 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp | |
parent | 79fbba9b7948d217ad34a81de205a9eaf53b05f9 (diff) | |
download | llvm-52a3ed5b93ca9aba042d87e2bb697bf0dda2e43c.zip llvm-52a3ed5b93ca9aba042d87e2bb697bf0dda2e43c.tar.gz llvm-52a3ed5b93ca9aba042d87e2bb697bf0dda2e43c.tar.bz2 |
[lldb][NFC] Inclusive language: replace master/slave names for ptys
[NFC] This patch replaces master and slave with primary and secondary
respectively when referring to pseudoterminals/file descriptors.
Reviewed By: clayborg, teemperor
Differential Revision: https://reviews.llvm.org/D113687
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp index da64531..5360db3 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp @@ -286,7 +286,7 @@ Status GDBRemoteCommunicationServerLLGS::LaunchProcess() { if (should_forward_stdio) { // nullptr means it's not redirected to file or pty (in case of LLGS local) // at least one of stdio will be transferred pty<->gdb-remote we need to - // give the pty master handle to this object to read and/or write + // give the pty primary handle to this object to read and/or write LLDB_LOG(log, "pid = {0}: setting up stdout/stderr redirection via $O " "gdb-remote commands", |