<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/lib/debugger, branch R16B02_yielding_binary_to_term</title>
<subtitle>Mirror of Erlang/OTP repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/'/>
<entry>
<title>Prepare release</title>
<updated>2013-09-16T18:11:53+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2013-09-16T18:11:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=20641fe0f2ea745873fc7557448d3a7deb1bd639'/>
<id>20641fe0f2ea745873fc7557448d3a7deb1bd639</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Change encoding of troublesome notes.xml files to utf-8</title>
<updated>2013-09-06T12:01:49+00:00</updated>
<author>
<name>Björn Gustavsson</name>
<email>bjorn@erlang.org</email>
</author>
<published>2013-09-06T11:40:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=c011973178d860f280c6ce18b07ce4176aec5b35'/>
<id>c011973178d860f280c6ce18b07ce4176aec5b35</id>
<content type='text'>
Most notes.xml files will be updated in every release and cause
the kind of the problems described in the previous commit.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Most notes.xml files will be updated in every release and cause
the kind of the problems described in the previous commit.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'jw/fix-float-middle-endian/OTP-11201' into maint</title>
<updated>2013-07-11T12:39:25+00:00</updated>
<author>
<name>Fredrik Gustafsson</name>
<email>fredrik@erlang.org</email>
</author>
<published>2013-07-11T12:39:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=193639fde33e135cc390f1df13076e5632fdd43c'/>
<id>193639fde33e135cc390f1df13076e5632fdd43c</id>
<content type='text'>
* jw/fix-float-middle-endian/OTP-11201:
  Fix binary construction on floating point middle-endian machines
  Fix binary matching on floating point middle-endian machines
  Fix erlang:phash2() on floating point middle-endian machines
  Fix external term format BIFs on floating point middle-endian machines
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* jw/fix-float-middle-endian/OTP-11201:
  Fix binary construction on floating point middle-endian machines
  Fix binary matching on floating point middle-endian machines
  Fix erlang:phash2() on floating point middle-endian machines
  Fix external term format BIFs on floating point middle-endian machines
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare release</title>
<updated>2013-06-17T14:23:55+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2013-06-17T14:23:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=8cece79b77952c991e62ae595bcf71cde016a052'/>
<id>8cece79b77952c991e62ae595bcf71cde016a052</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix binary construction on floating point middle-endian machines</title>
<updated>2013-06-14T13:25:12+00:00</updated>
<author>
<name>Johannes Weißl</name>
<email>jargon@molb.org</email>
</author>
<published>2013-06-14T13:24:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=9e45648698862905561baa533831afd4dd23a02a'/>
<id>9e45648698862905561baa533831afd4dd23a02a</id>
<content type='text'>
This complements 933e701 (OTP-10209). Without this patch the test cases
"in_guard/1" and "coerce_to_float/1" in bs_construct_SUITE fail.

The added lines in bs_construct_SUITE cover all branches that were not
covered before (small and big numbers if BIT_OFFSET(erts_bin_offset) != 0).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This complements 933e701 (OTP-10209). Without this patch the test cases
"in_guard/1" and "coerce_to_float/1" in bs_construct_SUITE fail.

The added lines in bs_construct_SUITE cover all branches that were not
covered before (small and big numbers if BIT_OFFSET(erts_bin_offset) != 0).
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix binary matching on floating point middle-endian machines</title>
<updated>2013-06-14T13:25:12+00:00</updated>
<author>
<name>Johannes Weißl</name>
<email>jargon@molb.org</email>
</author>
<published>2013-06-14T13:23:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=5adbd7d22bccc57e17ed00cac09fe8a336bb39c7'/>
<id>5adbd7d22bccc57e17ed00cac09fe8a336bb39c7</id>
<content type='text'>
This complements 933e701 (OTP-10209). Without this patch the test case
"bs_match_misc_SUITE:t_float/1" fails.

Simple error example:
1&gt; &lt;&lt;_,_,_,_,_,_,_,_&gt;&gt; = &lt;&lt;1.25/float&gt;&gt;.
&lt;&lt;63,244,0,0,0,0,0,0&gt;&gt;
2&gt; &lt;&lt;1.25/float&gt;&gt; = &lt;&lt;63,244,0,0,0,0,0,0&gt;&gt;.
** exception error: no match of right hand side value &lt;&lt;63,244,0,0,0,0,0,0&gt;&gt;

The additional test case is added because in a former version of this
patch the ERTS_FP_ERROR_THOROUGH check for NaN/infinity was mistakenly
applied on the still word-switched double.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This complements 933e701 (OTP-10209). Without this patch the test case
"bs_match_misc_SUITE:t_float/1" fails.

Simple error example:
1&gt; &lt;&lt;_,_,_,_,_,_,_,_&gt;&gt; = &lt;&lt;1.25/float&gt;&gt;.
&lt;&lt;63,244,0,0,0,0,0,0&gt;&gt;
2&gt; &lt;&lt;1.25/float&gt;&gt; = &lt;&lt;63,244,0,0,0,0,0,0&gt;&gt;.
** exception error: no match of right hand side value &lt;&lt;63,244,0,0,0,0,0,0&gt;&gt;

The additional test case is added because in a former version of this
patch the ERTS_FP_ERROR_THOROUGH check for NaN/infinity was mistakenly
applied on the still word-switched double.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update copyright years</title>
<updated>2013-06-12T17:37:57+00:00</updated>
<author>
<name>Björn-Egil Dahlberg</name>
<email>egil@erlang.org</email>
</author>
<published>2013-06-12T17:37:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=710b07ca18417976459335a8b0b81a6f6aa82699'/>
<id>710b07ca18417976459335a8b0b81a6f6aa82699</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 'bjorn/fix-encoding/OTP-11041' into maint</title>
<updated>2013-04-17T07:03:00+00:00</updated>
<author>
<name>Björn Gustavsson</name>
<email>bjorn@erlang.org</email>
</author>
<published>2013-04-17T07:03:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=d988c8ebc8ec0349413a99ce1296905f83d87546'/>
<id>d988c8ebc8ec0349413a99ce1296905f83d87546</id>
<content type='text'>
* bjorn/fix-encoding/OTP-11041:
  Encode Erlang source files with non-ascii characters in UTF-8
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* bjorn/fix-encoding/OTP-11041:
  Encode Erlang source files with non-ascii characters in UTF-8
</pre>
</div>
</content>
</entry>
<entry>
<title>Encode Erlang source files with non-ascii characters in UTF-8</title>
<updated>2013-04-17T06:59:31+00:00</updated>
<author>
<name>Björn Gustavsson</name>
<email>bjorn@erlang.org</email>
</author>
<published>2013-04-15T08:23:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=05a646a0844e8cf25045bc9388094c799c21538d'/>
<id>05a646a0844e8cf25045bc9388094c799c21538d</id>
<content type='text'>
To ensure that 'master' compiles when we merge 'maint' to it,
regardless of which encoding is default in 'master', all source
files with non-ascii characters *must* have the encoding specified.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To ensure that 'master' compiles when we merge 'maint' to it,
regardless of which encoding is default in 'master', all source
files with non-ascii characters *must* have the encoding specified.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use erlang:demonitor(Ref, [flush]) where applicable</title>
<updated>2013-04-05T11:06:24+00:00</updated>
<author>
<name>Loïc Hoguin</name>
<email>essen@ninenines.eu</email>
</author>
<published>2013-04-05T11:06:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=c82e9fad33302ff24fdddbd50f110c06d4eb81d4'/>
<id>c82e9fad33302ff24fdddbd50f110c06d4eb81d4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
