svn commit: r363228 - head/lib/libc/gen
Brooks Davis
brooks at FreeBSD.org
Wed Jul 15 17:05:40 UTC 2020
Author: brooks
Date: Wed Jul 15 17:05:37 2020
New Revision: 363228
URL: https://svnweb.freebsd.org/changeset/base/363228
Log:
Don't imply that all action values can be OR'd.
This is neither POSIX compliant nor what the implementation does.
This could be allowed by changing the value of TCSAFLUSH from 2 to 3,
but that doesn't seem worthwhile after 25+ years.
Reviewed by: imp
MFC after: 1 week
Sponsored by: DARPA
Differential Revision: https://reviews.freebsd.org/D25659
Modified:
head/lib/libc/gen/tcsetattr.3
Modified: head/lib/libc/gen/tcsetattr.3
==============================================================================
--- head/lib/libc/gen/tcsetattr.3 Wed Jul 15 16:12:00 2020 (r363227)
+++ head/lib/libc/gen/tcsetattr.3 Wed Jul 15 17:05:37 2020 (r363228)
@@ -28,7 +28,7 @@
.\" @(#)tcsetattr.3 8.3 (Berkeley) 1/2/94
.\" $FreeBSD$
.\"
-.Dd January 2, 1994
+.Dd July 15, 2020
.Dt TCSETATTR 3
.Os
.Sh NAME
@@ -221,8 +221,7 @@ termios structure referenced by
.Fa t .
The
.Fa action
-argument is created by
-.Em or Ns 'ing
+argument is one of
the following values, as specified in the include file
.In termios.h .
.Bl -tag -width "TCSADRAIN"
@@ -240,18 +239,20 @@ The change occurs after all output written to
.Fa fd
has been transmitted to the terminal.
Additionally, any input that has been received but not read is discarded.
-.It Fa TCSASOFT
-If this value is
-.Em or Ns 'ed
-into the
+.El
+.Pp
+The
.Fa action
-value, the values of the
+may be modified by
+.Em or Ns 'ing
+in
+.Fa TCSASOFT
+which causes the values of the
.Va c_cflag ,
.Va c_ispeed ,
and
.Va c_ospeed
-fields are ignored.
-.El
+fields to be ignored.
.Pp
The 0 baud rate is used to terminate the connection.
If 0 is specified as the output speed to the function
More information about the svn-src-all
mailing list