Cygwin: Add console fix regarding Ctrl-Z etc. to release notes.
This commit is contained in:
parent
48285aa36c
commit
b07b5829f2
|
@ -9,6 +9,11 @@ What's new:
|
||||||
thrd_detach, thrd_equal, thrd_exit, thrd_join, thrd_sleep, thrd_yield,
|
thrd_detach, thrd_equal, thrd_exit, thrd_join, thrd_sleep, thrd_yield,
|
||||||
tss_create, tss_delete, tss_get, tss_set.
|
tss_create, tss_delete, tss_get, tss_set.
|
||||||
|
|
||||||
|
- In cygwin console, new thread which handles special keys/signals such
|
||||||
|
as Ctrl-Z (VSUSP), Ctrl-\ (VQUIT), Ctrl-S (VSTOP), Ctrl-Q (VSTART) and
|
||||||
|
SIGWINCH has been introduced. There have been a long standing issue
|
||||||
|
that these keys/signals are handled only when app calls read() or
|
||||||
|
select(). Now, these work even if app does not call read() or select().
|
||||||
|
|
||||||
What changed:
|
What changed:
|
||||||
-------------
|
-------------
|
||||||
|
|
|
@ -20,6 +20,14 @@ thrd_detach, thrd_equal, thrd_exit, thrd_join, thrd_sleep, thrd_yield,
|
||||||
tss_create, tss_delete, tss_get, tss_set.
|
tss_create, tss_delete, tss_get, tss_set.
|
||||||
</para></listitem>
|
</para></listitem>
|
||||||
|
|
||||||
|
<listitem><para>
|
||||||
|
In cygwin console, new thread which handles special keys/signals such
|
||||||
|
as Ctrl-Z (VSUSP), Ctrl-\ (VQUIT), Ctrl-S (VSTOP), Ctrl-Q (VSTART) and
|
||||||
|
SIGWINCH has been introduced. There have been a long standing issue
|
||||||
|
that these keys/signals are handled only when app calls read() or
|
||||||
|
select(). Now, these work even if app does not call read() or select().
|
||||||
|
</para></listitem>
|
||||||
|
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
Loading…
Reference in New Issue