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/Windows/Common/NativeProcessWindows.cpp | |
| parent | 79fbba9b7948d217ad34a81de205a9eaf53b05f9 (diff) | |
[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/Windows/Common/NativeProcessWindows.cpp')
| -rw-r--r-- | lldb/source/Plugins/Process/Windows/Common/NativeProcessWindows.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Windows/Common/NativeProcessWindows.cpp b/lldb/source/Plugins/Process/Windows/Common/NativeProcessWindows.cpp index 5ae878024be1..3d2225ff0cb2 100644 --- a/lldb/source/Plugins/Process/Windows/Common/NativeProcessWindows.cpp +++ b/lldb/source/Plugins/Process/Windows/Common/NativeProcessWindows.cpp @@ -621,7 +621,7 @@ NativeProcessWindows::Factory::Attach( lldb::pid_t pid, NativeProcessProtocol::NativeDelegate &native_delegate, MainLoop &mainloop) const { Error E = Error::success(); - // Set pty master fd invalid since it is not available. + // Set pty primary fd invalid since it is not available. auto process_up = std::unique_ptr<NativeProcessWindows>( new NativeProcessWindows(pid, -1, native_delegate, E)); if (E) |
