<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/lib/stdlib/test, branch HansN-patch-1</title>
<subtitle>Mirror of Erlang/OTP repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/'/>
<entry>
<title>Merge pull request #1703 from juhlig/master</title>
<updated>2018-03-26T06:23:18+00:00</updated>
<author>
<name>Hans Bolinder</name>
<email>hasse@erlang.org</email>
</author>
<published>2018-03-26T06:23:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=0083a9451f5770a38bb21e78b7d574e5b72ba5f3'/>
<id>0083a9451f5770a38bb21e78b7d574e5b72ba5f3</id>
<content type='text'>
[ERL-557] add is_empty/1 to sets and ordsets
OTP-14996, ERL-557, PR-1703</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[ERL-557] add is_empty/1 to sets and ordsets
OTP-14996, ERL-557, PR-1703</pre>
</div>
</content>
</entry>
<entry>
<title>tests for is_empty/1</title>
<updated>2018-03-23T13:58:18+00:00</updated>
<author>
<name>j.uhlig</name>
<email>j.uhlig@mailingwork.de</email>
</author>
<published>2018-03-23T13:58:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=3514876e3c3d774f46ccd4b0bf04bffdba3e2987'/>
<id>3514876e3c3d774f46ccd4b0bf04bffdba3e2987</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'maint'</title>
<updated>2018-03-22T09:06:17+00:00</updated>
<author>
<name>Raimo Niskanen</name>
<email>raimo@erlang.org</email>
</author>
<published>2018-03-22T09:06:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=0c151c6939a83f9a26a45d24fd504fc4fb2f3f01'/>
<id>0c151c6939a83f9a26a45d24fd504fc4fb2f3f01</id>
<content type='text'>
* maint:
  Updated OTP version
  Update release notes
  Update version numbers
  ssh: Fix bad spec for double_algs() in ssh.hrl
  Test event insert from init
  Fix init to allow all actions

Conflicts:
	OTP_VERSION
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* maint:
  Updated OTP version
  Update release notes
  Update version numbers
  ssh: Fix bad spec for double_algs() in ssh.hrl
  Test event insert from init
  Fix init to allow all actions

Conflicts:
	OTP_VERSION
</pre>
</div>
</content>
</entry>
<entry>
<title>stdlib: Make benchmarks more robust</title>
<updated>2018-03-21T14:02:16+00:00</updated>
<author>
<name>Hans Bolinder</name>
<email>hasse@erlang.org</email>
</author>
<published>2018-03-21T14:02:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=19f321078ba82968ccda000b73c2c23ffb249086'/>
<id>19f321078ba82968ccda000b73c2c23ffb249086</id>
<content type='text'>
statistics(runtime) does not seem to work on some virtual machines.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
statistics(runtime) does not seem to work on some virtual machines.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1740 from rickard-green/rickard/signals/OTP-14589</title>
<updated>2018-03-21T10:54:28+00:00</updated>
<author>
<name>Rickard Green</name>
<email>rickard@erlang.org</email>
</author>
<published>2018-03-21T10:54:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=cf3cbf0871832cb0808293842e5ae726edfc12e1'/>
<id>cf3cbf0871832cb0808293842e5ae726edfc12e1</id>
<content type='text'>
Implementation of true asynchronous signaling between processes</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Implementation of true asynchronous signaling between processes</pre>
</div>
</content>
</entry>
<entry>
<title>Implementation of true asynchronous signaling between processes</title>
<updated>2018-03-21T09:27:03+00:00</updated>
<author>
<name>Rickard Green</name>
<email>rickard@erlang.org</email>
</author>
<published>2018-03-07T00:17:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=4bc282d812cc2c49aa3e2d073e96c720f16aa270'/>
<id>4bc282d812cc2c49aa3e2d073e96c720f16aa270</id>
<content type='text'>
Communication between Erlang processes has conceptually always been
performed through asynchronous signaling. The runtime system
implementation has however previously preformed most operation
synchronously. In a system with only one true thread of execution, this
is not problematic (often the opposite). In a system with multiple threads
of execution (as current runtime system implementation with SMP support)
it becomes problematic. This since it often involves locking of structures
when updating them which in turn cause resource contention. Utilizing
true asynchronous communication often avoids these resource contention
issues.

The case that triggered this change was contention on the link lock due
to frequent updates of the monitor trees during communication with a
frequently used server. The signal order delivery guarantees of the
language makes it hard to change the implementation of only some signals
to use true asynchronous signaling. Therefore the implementations
of (almost) all signals have been changed.

Currently the following signals have been implemented as true
asynchronous signals:
- Message signals
- Exit signals
- Monitor signals
- Demonitor signals
- Monitor triggered signals (DOWN, CHANGE, etc)
- Link signals
- Unlink signals
- Group leader signals

All of the above already defined as asynchronous signals in the
language. The implementation of messages signals was quite
asynchronous to begin with, but had quite strict delivery constraints
due to the ordering guarantees of signals between a pair of processes.

The previously used message queue partitioned into two halves has been
replaced by a more general signal queue partitioned into three parts
that service all kinds of signals. More details regarding the signal
queue can be found in comments in the erl_proc_sig_queue.h file.

The monitor and link implementations have also been completely replaced
in order to fit the new asynchronous signaling implementation as good
as possible. More details regarding the new monitor and link
implementations can be found in the erl_monitor_link.h file.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Communication between Erlang processes has conceptually always been
performed through asynchronous signaling. The runtime system
implementation has however previously preformed most operation
synchronously. In a system with only one true thread of execution, this
is not problematic (often the opposite). In a system with multiple threads
of execution (as current runtime system implementation with SMP support)
it becomes problematic. This since it often involves locking of structures
when updating them which in turn cause resource contention. Utilizing
true asynchronous communication often avoids these resource contention
issues.

The case that triggered this change was contention on the link lock due
to frequent updates of the monitor trees during communication with a
frequently used server. The signal order delivery guarantees of the
language makes it hard to change the implementation of only some signals
to use true asynchronous signaling. Therefore the implementations
of (almost) all signals have been changed.

Currently the following signals have been implemented as true
asynchronous signals:
- Message signals
- Exit signals
- Monitor signals
- Demonitor signals
- Monitor triggered signals (DOWN, CHANGE, etc)
- Link signals
- Unlink signals
- Group leader signals

All of the above already defined as asynchronous signals in the
language. The implementation of messages signals was quite
asynchronous to begin with, but had quite strict delivery constraints
due to the ordering guarantees of signals between a pair of processes.

The previously used message queue partitioned into two halves has been
replaced by a more general signal queue partitioned into three parts
that service all kinds of signals. More details regarding the signal
queue can be found in comments in the erl_proc_sig_queue.h file.

The monitor and link implementations have also been completely replaced
in order to fit the new asynchronous signaling implementation as good
as possible. More details regarding the new monitor and link
implementations can be found in the erl_monitor_link.h file.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1744 from uabboli/hasse/stdlib/lists_search/OTP-14675</title>
<updated>2018-03-20T09:42:18+00:00</updated>
<author>
<name>Hans Bolinder</name>
<email>hasse@erlang.org</email>
</author>
<published>2018-03-20T09:42:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=269814984a005f23fd1b5305c99cd92b68fd1641'/>
<id>269814984a005f23fd1b5305c99cd92b68fd1641</id>
<content type='text'>
stdlib: Add function lists:search/2</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
stdlib: Add function lists:search/2</pre>
</div>
</content>
</entry>
<entry>
<title>Test event insert from init</title>
<updated>2018-03-17T13:49:53+00:00</updated>
<author>
<name>Raimo Niskanen</name>
<email>raimo@erlang.org</email>
</author>
<published>2018-03-17T13:49:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=57b6fd27292e1c80e8e443991b9a24d3f8ad92eb'/>
<id>57b6fd27292e1c80e8e443991b9a24d3f8ad92eb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1743 from richcarl/io-format-multiple-modifiers</title>
<updated>2018-03-13T09:18:44+00:00</updated>
<author>
<name>Hans Bolinder</name>
<email>hasse@erlang.org</email>
</author>
<published>2018-03-13T09:18:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=3fa85a8e858e1c8300967e0eda347697c0940188'/>
<id>3fa85a8e858e1c8300967e0eda347697c0940188</id>
<content type='text'>
Allow multiple modifier characters in io:format control sequences
OTP-14971
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allow multiple modifier characters in io:format control sequences
OTP-14971
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow multiple modifier characters in io:format control sequences</title>
<updated>2018-03-12T15:24:33+00:00</updated>
<author>
<name>Richard Carlsson</name>
<email>richardc@klarna.com</email>
</author>
<published>2018-03-08T11:31:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=9c1cb443a22679f038451b4491c4c50ec53f77a2'/>
<id>9c1cb443a22679f038451b4491c4c50ec53f77a2</id>
<content type='text'>
This makes it possible to print unicode atoms at the same time as
suppressing detection of printable lists.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This makes it possible to print unicode atoms at the same time as
suppressing detection of printable lists.
</pre>
</div>
</content>
</entry>
</feed>
