diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-11-09 11:31:01 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-11-09 11:31:01 +0100 |
commit | 2bc52f6dd31d114b1a2d3cb7ad0a12b0b209beff (patch) | |
tree | 152a8bcc9df4e45f585599d6e36d17824b2ee2da /erts/doc | |
parent | ed42404dded81e6261a0fcd707c22e4bee4df059 (diff) | |
parent | 2b41d8f318b7e5ec139d42fd2f01a132699be839 (diff) | |
download | otp-2bc52f6dd31d114b1a2d3cb7ad0a12b0b209beff.tar.gz otp-2bc52f6dd31d114b1a2d3cb7ad0a12b0b209beff.tar.bz2 otp-2bc52f6dd31d114b1a2d3cb7ad0a12b0b209beff.zip |
Merge branch 'maint-19' into maint
Diffstat (limited to 'erts/doc')
-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> |