diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2019-04-06 18:03:22 +0200 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2019-04-06 18:09:41 +0200 |
commit | f0ea836b753b0756b00866ac8b909a0a7dfbac5f (patch) | |
tree | e2ff0e931f9f377538d51b16ed3830d531e409fc | |
parent | 372874364eb2752ac095f55172de3dc11372f03f (diff) | |
download | cygnal-f0ea836b753b0756b00866ac8b909a0a7dfbac5f.tar.gz cygnal-f0ea836b753b0756b00866ac8b909a0a7dfbac5f.tar.bz2 cygnal-f0ea836b753b0756b00866ac8b909a0a7dfbac5f.zip |
Cygwin: add latest signal handling fixes to release notes
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
-rw-r--r-- | winsup/cygwin/release/3.0.6 | 9 | ||||
-rw-r--r-- | winsup/cygwin/release/3.1.0 | 3 | ||||
-rw-r--r-- | winsup/doc/new-features.xml | 5 |
3 files changed, 15 insertions, 2 deletions
diff --git a/winsup/cygwin/release/3.0.6 b/winsup/cygwin/release/3.0.6 index 14a83290e..d9fca5875 100644 --- a/winsup/cygwin/release/3.0.6 +++ b/winsup/cygwin/release/3.0.6 @@ -9,6 +9,11 @@ What changed: Bug Fixes --------- -- Fix the problem that `ps' or `pstree' may show up in their own - output twice. +- Fix the problem that `ps' or `pstree' may show up in their own output twice. Addresses: Report on IRC + +- Honor setting uc_sigmask in a sigaction signal handler. + Addresses: https://cygwin.com/ml/cygwin/2019-04/msg00016.html + +- Fix signal handling if setcontext is called from a signal handler. + Addresses: Self-tested. diff --git a/winsup/cygwin/release/3.1.0 b/winsup/cygwin/release/3.1.0 index d55b65517..95569fc2b 100644 --- a/winsup/cygwin/release/3.1.0 +++ b/winsup/cygwin/release/3.1.0 @@ -13,6 +13,9 @@ What changed: Addresses: https://cygwin.com/ml/cygwin/2015-03/msg00047.html https://cygwin.com/ml/cygwin/2015-12/msg00311.html +- If a SA_SIGINFO signal handler changes the ucontext_t pointed to by + the third parameter, follow it after returning from the handler. + Bug Fixes --------- diff --git a/winsup/doc/new-features.xml b/winsup/doc/new-features.xml index 829f81721..376789cda 100644 --- a/winsup/doc/new-features.xml +++ b/winsup/doc/new-features.xml @@ -18,6 +18,11 @@ Add 24 bit color support using xterm compatibility mode in Windows 10 uses the nearest color from 16 system colors. </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. +</para></listitem> + </itemizedlist> </sect2> |