Index: bin/ps/ps.1
===================================================================
RCS file: /cvs/src/bin/ps/ps.1,v
retrieving revision 1.128
diff -u -p -r1.128 ps.1
--- bin/ps/ps.1 3 Sep 2022 15:59:04 -0000       1.128
+++ bin/ps/ps.1 13 Oct 2022 17:05:57 -0000
@@ -443,7 +443,8 @@ information:
 .Pp
 .Bl -tag -width indent -compact
 .It +
-The process is in the foreground process group of its control terminal.
+The process is in the foreground process group of its controlling
+terminal.
 .It \*(Lt
 The process has a raised CPU
 scheduling priority (see
@@ -508,7 +509,7 @@ Saved GID from a setgid executable.
 .It Cm svuid
 Saved UID from a setuid executable.
 .It Cm tdev
-Control terminal device number.
+Controlling terminal device number.
 .It Cm tid
 Thread ID.
 Used together with
@@ -518,11 +519,11 @@ Alias:
 .Cm cputime .
 Accumulated CPU time, user + system.
 .It Cm tpgid
-Control terminal process group ID.
+Controlling terminal process group ID.
 .\".It trss
 .\"Text resident set size, in Kilobytes.
 .It Cm tsess
-Control terminal session pointer.
+Controlling terminal session pointer.
 .It Cm tsiz
 Text size, in Kilobytes.
 .It Cm tt
@@ -536,7 +537,7 @@ This is followed by a
 if the process can no longer reach that
 controlling terminal (i.e. it has been revoked).
 .It Cm tty
-Full name of control terminal.
+Full name of controlling terminal.
 .It Cm ucomm
 Alias:
 .Cm comm .
Index: lib/libc/compat-43/sigvec.3
===================================================================
RCS file: /cvs/src/lib/libc/compat-43/sigvec.3,v
retrieving revision 1.36
diff -u -p -r1.36 sigvec.3
--- lib/libc/compat-43/sigvec.3 31 Mar 2022 17:27:15 -0000      1.36
+++ lib/libc/compat-43/sigvec.3 13 Oct 2022 17:06:02 -0000
@@ -243,8 +243,8 @@ with names as in the include file
 .It Dv SIGTSTP Ta "stop process" Ta "stop signal generated from keyboard"
 .It Dv SIGCONT Ta "discard signal" Ta "continue after stop"
 .It Dv SIGCHLD Ta "discard signal" Ta "child status has changed"
-.It Dv SIGTTIN Ta "stop process" Ta "background read attempted from control 
terminal"
-.It Dv SIGTTOU Ta "stop process" Ta "background write attempted to control 
terminal"
+.It Dv SIGTTIN Ta "stop process" Ta "background read attempted from 
controlling terminal"
+.It Dv SIGTTOU Ta "stop process" Ta "background write attempted to controlling 
terminal"
 .It Dv SIGIO Ta "discard signal" Ta "I/O is possible on a descriptor (see"
 .Xr fcntl 2 )
 .It Dv SIGXCPU Ta "terminate process" Ta "CPU time limit exceeded (see"
Index: lib/libc/gen/signal.3
===================================================================
RCS file: /cvs/src/lib/libc/gen/signal.3,v
retrieving revision 1.56
diff -u -p -r1.56 signal.3
--- lib/libc/gen/signal.3       1 Aug 2017 14:57:02 -0000       1.56
+++ lib/libc/gen/signal.3       13 Oct 2022 17:06:02 -0000
@@ -76,12 +76,12 @@ typing the
 character.
 .Pp
 Signals are used when a process is stopped because it wishes to access
-its control terminal while in the background (see
+its controlling terminal while in the background (see
 .Xr tty 4 ) .
 Signals are optionally generated
 when a process resumes after being stopped,
 when the status of child processes changes,
-or when input is ready at the control terminal.
+or when input is ready at the controlling terminal.
 Most signals result in the termination of the process receiving them
 if no action
 is taken; some signals instead cause the process receiving them
@@ -120,8 +120,8 @@ These signals are defined in the file
 .It Dv SIGTSTP Ta "stop process" Ta "stop signal generated from keyboard"
 .It Dv SIGCONT Ta "discard signal" Ta "continue after stop"
 .It Dv SIGCHLD Ta "discard signal" Ta "child status has changed"
-.It Dv SIGTTIN Ta "stop process" Ta "background read attempted from control 
terminal"
-.It Dv SIGTTOU Ta "stop process" Ta "background write attempted to control 
terminal"
+.It Dv SIGTTIN Ta "stop process" Ta "background read attempted from 
controlling terminal"
+.It Dv SIGTTOU Ta "stop process" Ta "background write attempted to controlling 
terminal"
 .It Dv SIGIO Ta "discard signal" Ta "I/O is possible on a descriptor (see"
 .Xr fcntl 2 )
 .It Dv SIGXCPU Ta "terminate process" Ta "CPU time limit exceeded (see"
Index: lib/libc/gen/ttyname.3
===================================================================
RCS file: /cvs/src/lib/libc/gen/ttyname.3,v
retrieving revision 1.19
diff -u -p -r1.19 ttyname.3
--- lib/libc/gen/ttyname.3      12 Nov 2013 05:12:15 -0000      1.19
+++ lib/libc/gen/ttyname.3      13 Oct 2022 17:06:02 -0000
@@ -94,7 +94,8 @@ The maximum length of the terminal name 
 .Pp
 The
 .Fn ttyslot
-function fetches the current process's control terminal number from the
+function fetches the current process's controlling terminal number from
+the
 .Xr ttys 5
 file entry.
 .Sh RETURN VALUES
Index: lib/libc/sys/execve.2
===================================================================
RCS file: /cvs/src/lib/libc/sys/execve.2,v
retrieving revision 1.57
diff -u -p -r1.57 execve.2
--- lib/libc/sys/execve.2       24 Sep 2022 15:21:21 -0000      1.57
+++ lib/libc/sys/execve.2       13 Oct 2022 17:06:02 -0000
@@ -156,7 +156,7 @@ The process will be started without the 
 The new process also inherits the following attributes from
 the calling process:
 .Pp
-.Bl -tag -width parent_process_ID -offset indent -compact
+.Bl -tag -width controlling_terminal -offset indent -compact
 .It process ID
 see
 .Xr getpid 2
@@ -178,7 +178,7 @@ see
 .It root directory
 see
 .Xr chroot 2
-.It control terminal
+.It controlling terminal
 see
 .Xr termios 4
 .It resource usages
Index: lib/libc/sys/getpgrp.2
===================================================================
RCS file: /cvs/src/lib/libc/sys/getpgrp.2,v
retrieving revision 1.18
diff -u -p -r1.18 getpgrp.2
--- lib/libc/sys/getpgrp.2      10 Sep 2015 17:55:21 -0000      1.18
+++ lib/libc/sys/getpgrp.2      13 Oct 2022 17:06:02 -0000
@@ -71,8 +71,7 @@ The
 .Fn tcgetpgrp
 and
 .Fn tcsetpgrp
-calls
-are used to get/set the process group of the control terminal.
+calls are used to get/set the process group of the controlling terminal.
 .Sh ERRORS
 .Fn getpgrp
 always succeeds, however
Index: lib/libc/sys/sigaction.2
===================================================================
RCS file: /cvs/src/lib/libc/sys/sigaction.2,v
retrieving revision 1.76
diff -u -p -r1.76 sigaction.2
--- lib/libc/sys/sigaction.2    31 Mar 2022 17:27:16 -0000      1.76
+++ lib/libc/sys/sigaction.2    13 Oct 2022 17:06:02 -0000
@@ -327,8 +327,8 @@ with names as in the include file
 .It Dv SIGTSTP Ta "stop process" Ta "stop signal generated from keyboard"
 .It Dv SIGCONT Ta "discard signal" Ta "continue after stop"
 .It Dv SIGCHLD Ta "discard signal" Ta "child status has changed"
-.It Dv SIGTTIN Ta "stop process" Ta "background read attempted from control 
terminal"
-.It Dv SIGTTOU Ta "stop process" Ta "background write attempted to control 
terminal"
+.It Dv SIGTTIN Ta "stop process" Ta "background read attempted from 
controlling terminal"
+.It Dv SIGTTOU Ta "stop process" Ta "background write attempted to controlling 
terminal"
 .It Dv SIGIO Ta "discard signal" Ta "I/O is possible on a descriptor (see"
 .Xr fcntl 2 )
 .It Dv SIGXCPU Ta "terminate process" Ta "CPU time limit exceeded (see"
Index: sbin/dump/dump.8
===================================================================
RCS file: /cvs/src/sbin/dump/dump.8,v
retrieving revision 1.55
diff -u -p -r1.55 dump.8
--- sbin/dump/dump.8    2 Jun 2022 15:35:55 -0000       1.55
+++ sbin/dump/dump.8    13 Oct 2022 17:06:03 -0000
@@ -314,7 +314,7 @@ flag,
 .Nm
 interacts with the operator on
 .Nm dump Ns 's
-control terminal at times when
+controlling terminal at times when
 .Nm
 can no longer proceed,
 or if something is grossly wrong.
Index: share/man/man4/pty.4
===================================================================
RCS file: /cvs/src/share/man/man4/pty.4,v
retrieving revision 1.25
diff -u -p -r1.25 pty.4
--- share/man/man4/pty.4        5 Jun 2018 16:43:19 -0000       1.25
+++ share/man/man4/pty.4        13 Oct 2022 17:06:03 -0000
@@ -226,8 +226,8 @@ independent of
 .Dv TIOCPKT .
 This mode causes input to the pseudo terminal
 to be flow controlled and not input edited (regardless of the terminal mode).
-Each write to the control terminal produces a record boundary for the process
-reading the terminal.
+Each write to the controlling terminal produces a record boundary for the
+process reading the terminal.
 In normal usage, a write of data is like the data typed as a line
 on the terminal; a write of 0 bytes is like typing an end-of-file
 character.
Index: usr.bin/tset/tset.1
===================================================================
RCS file: /cvs/src/usr.bin/tset/tset.1,v
retrieving revision 1.23
diff -u -p -r1.23 tset.1
--- usr.bin/tset/tset.1 31 Mar 2022 17:27:28 -0000      1.23
+++ usr.bin/tset/tset.1 13 Oct 2022 17:06:03 -0000
@@ -275,7 +275,7 @@ and
 .Ql \&!
 inverts the sense of the test.
 The baud rate is specified as a number and is compared with the speed
-of the standard error output (which should be the control terminal).
+of the standard error output (which should be the controlling terminal).
 The terminal type is a string.
 .Pp
 If the terminal type is not specified on the command line, the

Reply via email to