diff options
author | Erlang/OTP <[email protected]> | 2016-11-08 10:17:58 +0100 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2016-11-08 10:17:58 +0100 |
commit | c31c70b34fb7ee2b6a579856a296758f2b27a721 (patch) | |
tree | 3194cdd54efab3d2b650174afe197da9c4ec8af0 | |
parent | 02f50b2308bf6b7d99207a736e70ea3b1e3a6da6 (diff) | |
download | otp-c31c70b34fb7ee2b6a579856a296758f2b27a721.tar.gz otp-c31c70b34fb7ee2b6a579856a296758f2b27a721.tar.bz2 otp-c31c70b34fb7ee2b6a579856a296758f2b27a721.zip |
Update release notes
-rw-r--r-- | erts/doc/src/notes.xml | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/erts/doc/src/notes.xml b/erts/doc/src/notes.xml index 412675fd2b..dd260f2d1f 100644 --- a/erts/doc/src/notes.xml +++ b/erts/doc/src/notes.xml @@ -32,6 +32,50 @@ <p>This document describes the changes made to the ERTS application.</p> +<section><title>Erts 8.1.1</title> + + <section><title>Fixed Bugs and Malfunctions</title> + <list> + <item> + <p> + The emulator got a dynamic library dependency towards + libsctp, which on Linux was not intended since the + emulator there loads and resolves the needed sctp + functions in runtime. This has been fixed and a configure + switch --enable-sctp=lib has been added for those who + want such a library dependency.</p> + <p> + Own Id: OTP-13956 Aux Id: ERL-262, ERL-133 </p> + </item> + <item> + <p> + Fix SIGUSR1 crashdump generation</p> + <p> + Do not generate a core when a crashdump is asked for.</p> + <p> + Own Id: OTP-13997</p> + </item> + <item> + <p>The new functions in <c>code</c> that allows loading + of many modules at once had a performance problem. While + executing a helper function in the <c>erl_prim_loader</c> + process, garbage messages were produced. The garbages + messages were ignored and ultimately discarded, but there + would be a negative impact on performance and memory + usage. The number of garbage message depended on both the + number of modules to be loaded and the length of the code + path.</p> + <p>The functions affected of this problem were: + <c>atomic_load/1</c>, <c>ensure_modules_loaded/1</c>, and + <c>prepare_loading/1</c>.</p> + <p> + Own Id: OTP-14009</p> + </item> + </list> + </section> + +</section> + <section><title>Erts 8.1</title> <section><title>Fixed Bugs and Malfunctions</title> |