diff options
author | Lukas Larsson <[email protected]> | 2019-01-25 13:25:09 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2019-01-25 13:25:09 +0100 |
commit | d6d493ab1d9131e5a5ccb6a73cd65da39447ebf0 (patch) | |
tree | b2283b4bc597ea93ecf41dc8b8ecdca905783f2c /erts | |
parent | 5ed2f3d9757c9f2b8e49a4796e2a384c938d80dd (diff) | |
parent | ecbfc52f06a71ed553a5986c6a13bc893586615b (diff) | |
download | otp-d6d493ab1d9131e5a5ccb6a73cd65da39447ebf0.tar.gz otp-d6d493ab1d9131e5a5ccb6a73cd65da39447ebf0.tar.bz2 otp-d6d493ab1d9131e5a5ccb6a73cd65da39447ebf0.zip |
Merge branch 'maint'
* maint:
Updated OTP version
Prepare release
Include erlang-logo128.png in release
Enable setting custom application icon for Mac OS X through environment variable
Update to icon with better resolution
Diffstat (limited to 'erts')
-rw-r--r-- | erts/doc/src/notes.xml | 47 | ||||
-rw-r--r-- | erts/vsn.mk | 2 |
2 files changed, 48 insertions, 1 deletions
diff --git a/erts/doc/src/notes.xml b/erts/doc/src/notes.xml index 8324871626..2c23456ff1 100644 --- a/erts/doc/src/notes.xml +++ b/erts/doc/src/notes.xml @@ -31,6 +31,53 @@ </header> <p>This document describes the changes made to the ERTS application.</p> +<section><title>Erts 10.2.3</title> + + <section><title>Fixed Bugs and Malfunctions</title> + <list> + <item> + <p> + Fix bug where doing a <c>gen_tcp:send</c> on a socket + with <c>delay_send</c> set to true could cause a segfault + if the other side closes the connection.</p> + <p> + Bug was introduced in erts-10.2 (OTP-21.2).</p> + <p> + Own Id: OTP-15536 Aux Id: ERL-827 </p> + </item> + <item> + <p> + Fix a race condition when a port program closes that + could result in the next started port to hang during + startup.</p> + <p> + When this fault happens the following error is normally + (but not always) logged:</p> + <p> + <c> =ERROR REPORT==== 14-Jan-2019::10:45:52.868246 + ===</c><br/><c> Bad input fd in erts_poll()! fd=11, + port=#Port<0.505>, driver=spawn, name=/bin/sh -s + unix:cmd </c></p> + <p> + Bug was introduced in erts-10.0 (OTP-21.0).</p> + <p> + Own Id: OTP-15537</p> + </item> + <item> + <p> + Fix a bug where polling for external events could be + delayed for a very long time if all active schedulers + were 100% loaded.</p> + <p> + Bug was introduced in erts-10.2 (OTP-21.2).</p> + <p> + Own Id: OTP-15538 Aux Id: ERIERL-229 </p> + </item> + </list> + </section> + +</section> + <section><title>Erts 10.2.2</title> <section><title>Fixed Bugs and Malfunctions</title> diff --git a/erts/vsn.mk b/erts/vsn.mk index c579b6364a..9c912a422b 100644 --- a/erts/vsn.mk +++ b/erts/vsn.mk @@ -18,7 +18,7 @@ # %CopyrightEnd% # -VSN = 10.2.2 +VSN = 10.2.3 # Port number 4365 in 4.2 # Port number 4366 in 4.3 |