From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 1D046385783B; Sun, 30 Aug 2020 12:30:15 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 1D046385783B Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Corinna Vinschen To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin] Cygwin: Add Cygwin 3.2 release info X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/master X-Git-Oldrev: 75a669790e6eb0f07f4d33cd71c7e9b565a84ee8 X-Git-Newrev: ec9734dbb5f7be24d9ea9cc5873d98d2b29087d4 Message-Id: <20200830123015.1D046385783B@sourceware.org> Date: Sun, 30 Aug 2020 12:30:15 +0000 (GMT) X-BeenThere: cygwin-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin core component git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Aug 2020 12:30:15 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=ec9734dbb5f7be24d9ea9cc5873d98d2b29087d4 commit ec9734dbb5f7be24d9ea9cc5873d98d2b29087d4 Author: Corinna Vinschen Date: Sun Aug 30 13:30:13 2020 +0200 Cygwin: Add Cygwin 3.2 release info Signed-off-by: Corinna Vinschen Diff: --- winsup/cygwin/release/3.2.0 | 29 +++++++++++++++++++++++++++++ winsup/doc/new-features.xml | 20 ++++++++++++++++++++ winsup/doc/posix.xml | 25 +++++++++++++++++++++++++ 3 files changed, 74 insertions(+) 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)