Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Brown <kbrown@cornell.edu>2021-07-11 14:04:58 +0300
committerKen Brown <kbrown@cornell.edu>2021-07-12 23:26:13 +0300
commitcee03513d80568a68cf1be2ca70385afdcaaaec3 (patch)
treebf8800442d3a6daa437099e80e91c879a04daf4d /winsup/doc
parent91f99d323b39dc0c06c40038791db9861d4b76b9 (diff)
Cygwin: cfsetspeed: allow speed to be a numerical baud rate
The Linux man page for cfsetspeed(3) specifies that the speed argument must be one of the constants Bnnn (e.g., B9600) defined in termios.h. But Linux in fact allows the speed to be the numerical baud rate (e.g., 9600). For consistency with Linux, we now do the same. Addresses: https://cygwin.com/pipermail/cygwin/2021-July/248887.html
Diffstat (limited to 'winsup/doc')
-rw-r--r--winsup/doc/new-features.xml11
1 files changed, 8 insertions, 3 deletions
diff --git a/winsup/doc/new-features.xml b/winsup/doc/new-features.xml
index 5ec36e409..b58872935 100644
--- a/winsup/doc/new-features.xml
+++ b/winsup/doc/new-features.xml
@@ -71,9 +71,14 @@ facl(2) now fails with EBADF on a file opened with O_PATH.
</para></listitem>
<listitem><para>
-- Allow to start Windows Store executables via their "app execution
- aliases". Handle these aliases (which are special reparse points)
- as symlinks to the actual executables.
+Allow to start Windows Store executables via their "app execution
+aliases". Handle these aliases (which are special reparse points)
+as symlinks to the actual executables.
+</para></listitem>
+
+<listitem><para>
+The speed argument to cfsetspeed(3) can now be a numerical baud rate
+rather than a Bnnn constant, as on Linux.
</para></listitem>
</itemizedlist>