diff options
author | Henrik Nord <[email protected]> | 2017-09-26 12:33:40 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2017-09-26 12:33:40 +0200 |
commit | 25587f05f5d80f9cfa25df953b3ce7f53c70d31a (patch) | |
tree | dfe3cb303402f0ebf8107ff77a764ab9286f67d9 /lib/kernel | |
parent | 3c23f2c6335d8586aca1efb9da6d20f00a8840fd (diff) | |
parent | 02fd746c40e829adbe77cc526c7df904698e2534 (diff) | |
download | otp-25587f05f5d80f9cfa25df953b3ce7f53c70d31a.tar.gz otp-25587f05f5d80f9cfa25df953b3ce7f53c70d31a.tar.bz2 otp-25587f05f5d80f9cfa25df953b3ce7f53c70d31a.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/kernel')
-rw-r--r-- | lib/kernel/doc/src/notes.xml | 44 | ||||
-rw-r--r-- | lib/kernel/vsn.mk | 2 |
2 files changed, 45 insertions, 1 deletions
diff --git a/lib/kernel/doc/src/notes.xml b/lib/kernel/doc/src/notes.xml index 9cd03ffcad..a5316dd476 100644 --- a/lib/kernel/doc/src/notes.xml +++ b/lib/kernel/doc/src/notes.xml @@ -31,6 +31,50 @@ </header> <p>This document describes the changes made to the Kernel application.</p> +<section><title>Kernel 5.4</title> + + <section><title>Fixed Bugs and Malfunctions</title> + <list> + <item> + <p> + Processes which did output after switching jobs (Ctrl+G) + could be left forever stuck in the io request.</p> + <p> + Own Id: OTP-14571 Aux Id: ERL-472 </p> + </item> + </list> + </section> + + + <section><title>Improvements and New Features</title> + <list> + <item> + <p>Lock counting can now be fully toggled at runtime in + the lock counting emulator (<c>-emu_type lcnt</c>). + Everything is enabled by default to match the old + behavior, but specific categories can be toggled at will + with minimal runtime overhead when disabled. Refer to the + documentation on <c>lcnt:rt_mask/1</c> for details.</p> + <p> + Own Id: OTP-13170</p> + </item> + <item> + <p><c>lcnt:collect</c> and <c>lcnt:clear</c> will no + longer block all other threads in the runtime system.</p> + <p> + Own Id: OTP-14412</p> + </item> + <item> + <p> + General Unicode improvements.</p> + <p> + Own Id: OTP-14462</p> + </item> + </list> + </section> + +</section> + <section><title>Kernel 5.3.1</title> <section><title>Fixed Bugs and Malfunctions</title> diff --git a/lib/kernel/vsn.mk b/lib/kernel/vsn.mk index c9463241d1..cef54dd41a 100644 --- a/lib/kernel/vsn.mk +++ b/lib/kernel/vsn.mk @@ -1 +1 @@ -KERNEL_VSN = 5.3.1 +KERNEL_VSN = 5.4 |