From ec9734dbb5f7be24d9ea9cc5873d98d2b29087d4 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Sun, 30 Aug 2020 13:30:13 +0200 Subject: [PATCH] Cygwin: Add Cygwin 3.2 release info Signed-off-by: Corinna Vinschen --- winsup/cygwin/release/3.2.0 | 29 +++++++++++++++++++++++++++++ winsup/doc/new-features.xml | 20 ++++++++++++++++++++ winsup/doc/posix.xml | 25 +++++++++++++++++++++++++ 3 files changed, 74 insertions(+) create mode 100644 winsup/cygwin/release/3.2.0 diff --git a/winsup/cygwin/release/3.2.0 b/winsup/cygwin/release/3.2.0 new file mode 100644 index 000000000..5fa476f1e --- /dev/null +++ b/winsup/cygwin/release/3.2.0 @@ -0,0 +1,29 @@ +What's new: +----------- + +- Revamped pseudo console support. + +- New C11 threads API: call_once, cnd_broadcast, cnd_destroy, cnd_init, + cnd_signal, cnd_timedwait, cnd_wait, mtx_destroy, mtx_init, mtx_lock, + mtx_timedlock, mtx_trylock, mtx_unlock, thrd_create, thrd_current, + thrd_detach, thrd_equal, thrd_exit, thrd_join, thrd_sleep, thrd_yield, + tss_create, tss_delete, tss_get, tss_set. + + +What changed: +------------- + +- Allow ~5000 child processes per process on 64 bit, ~1200 child processes + per process on 32 bit. So far, only 256 child processes per process were + supported. + +- A few FAQ updates. + + +Bug Fixes +--------- + +- Iterate at least 4 times over pthread_key_t destructors per POSIX. + +- The pthread_yield declaration in pthread is now visible by default + or when defining _BSD_SOURCE, too. diff --git a/winsup/doc/new-features.xml b/winsup/doc/new-features.xml index ca64b7a6f..e5b576b55 100644 --- a/winsup/doc/new-features.xml +++ b/winsup/doc/new-features.xml @@ -4,6 +4,26 @@ What's new and what changed in Cygwin +What's new and what changed in 3.2 + + + + +Revamped pseudo console support. + + + +New C11 threads API: call_once, cnd_broadcast, cnd_destroy, cnd_init, +cnd_signal, cnd_timedwait, cnd_wait, mtx_destroy, mtx_init, mtx_lock, +mtx_timedlock, mtx_trylock, mtx_unlock, thrd_create, thrd_current, +thrd_detach, thrd_equal, thrd_exit, thrd_join, thrd_sleep, thrd_yield, +tss_create, tss_delete, tss_get, tss_set. + + + + + + What's new and what changed in 3.1 diff --git a/winsup/doc/posix.xml b/winsup/doc/posix.xml index 8e88245ac..0669d07de 100644 --- a/winsup/doc/posix.xml +++ b/winsup/doc/posix.xml @@ -1507,7 +1507,32 @@ also IEEE Std 1003.1-2008 (POSIX.1-2008). aligned_alloc (ISO C11) at_quick_exit (ISO C11) + call_once (ISO C11) + cnd_broadcast (ISO C11) + cnd_destroy (ISO C11) + cnd_init (ISO C11) + cnd_signal (ISO C11) + cnd_timedwait (ISO C11) + cnd_wait (ISO C11) + mtx_destroy (ISO C11) + mtx_init (ISO C11) + mtx_lock (ISO C11) + mtx_timedlock (ISO C11) + mtx_trylock (ISO C11) + mtx_unlock (ISO C11) quick_exit (ISO C11) + thrd_create (ISO C11) + thrd_current (ISO C11) + thrd_detach (ISO C11) + thrd_equal (ISO C11) + thrd_exit (ISO C11) + thrd_join (ISO C11) + thrd_sleep (ISO C11) + thrd_yield (ISO C11) + tss_create (ISO C11) + tss_delete (ISO C11) + tss_get (ISO C11) + tss_set (ISO C11) -- 2.43.5