summaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/Windows/Common/NativeProcessWindows.cpp
diff options
context:
space:
mode:
authorQuinn Pham <Quinn.Pham@ibm.com>2021-11-10 08:50:14 -0600
committerQuinn Pham <Quinn.Pham@ibm.com>2021-11-12 10:54:18 -0600
commit52a3ed5b93ca9aba042d87e2bb697bf0dda2e43c (patch)
treeca1b8d72d9df545bc30ad7ff3f556f2c16c2fa93 /lldb/source/Plugins/Process/Windows/Common/NativeProcessWindows.cpp
parent79fbba9b7948d217ad34a81de205a9eaf53b05f9 (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.cpp2
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)