Cygwin: add W10 pseudo console support to release notes

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen 2019-08-29 13:56:00 +02:00 committed by Ken Brown
parent 5543b44273
commit 4255526195
2 changed files with 18 additions and 6 deletions

View File

@ -5,6 +5,11 @@ What's new:
1703 or later. Add fake 24 bit color support for legacy console,
which uses the nearest color from 16 system colors.
- Support pseudo console in PTY. Pseudo console is a new feature
in Windows 10 1809, which provides console APIs on virtual
terminal. With this patch, native console applications can work
in PTYs such as mintty, ssh, gnu screen or tmux.
- New APIs: sched_getaffinity, sched_setaffinity, pthread_getaffinity_np,
pthread_setaffinity_np, plus CPU_SET macros.

View File

@ -8,12 +8,6 @@
<itemizedlist mark="bullet">
<listitem><para>
Eliminate a header file name collision with &lt;X11/XLocale.h&gt; on
case insensitive filesystems by reverting &lt;xlocale.h&gt; back to
&lt;sys/_locale.h&gt;.
</para></listitem>
<listitem><para>
FIFOs can now be opened multiple times for writing.
</para></listitem>
@ -24,6 +18,19 @@ Add 24 bit color support using xterm compatibility mode in Windows 10
uses the nearest color from 16 system colors.
</para></listitem>
<listitem><para>
Support pseudo console in PTY. Pseudo console is a new feature
in Windows 10 1809, which provides console APIs on virtual
terminal. With this patch, native console applications can work
in PTYs such as mintty, ssh, gnu screen or tmux.
</para></listitem>
<listitem><para>
Eliminate a header file name collision with &lt;X11/XLocale.h&gt; on
case insensitive filesystems by reverting &lt;xlocale.h&gt; back to
&lt;sys/_locale.h&gt;.
</para></listitem>
<listitem><para>
If a SA_SIGINFO signal handler changes the ucontext_t pointed to by the
third parameter, follow it after returning from the handler.