<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/lib/erl_interface/src/decode, branch maint</title>
<subtitle>Mirror of Erlang/OTP repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/'/>
<entry>
<title>Merge branch 'sverker/erl_interface/ei_decode_fun-fix/OTP-15996' into maint</title>
<updated>2019-08-19T16:35:59+00:00</updated>
<author>
<name>Sverker Eriksson</name>
<email>sverker@erlang.org</email>
</author>
<published>2019-08-19T16:35:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=2f30bd2f28f87b80dfa1329f33d4d590a027f6ec'/>
<id>2f30bd2f28f87b80dfa1329f33d4d590a027f6ec</id>
<content type='text'>
* sverker/erl_interface/ei_decode_fun-fix/OTP-15996:
  erl_interface: Fix bug in ei_decode_fun for very old encoding
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* sverker/erl_interface/ei_decode_fun-fix/OTP-15996:
  erl_interface: Fix bug in ei_decode_fun for very old encoding
</pre>
</div>
</content>
</entry>
<entry>
<title>erl_interface: Fix bug in ei_decode_fun for very old encoding</title>
<updated>2019-08-13T12:49:24+00:00</updated>
<author>
<name>Sverker Eriksson</name>
<email>sverker@erlang.org</email>
</author>
<published>2019-08-13T12:41:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=c4ad27e24c8f28ad62f1d3afffaaa6033a460996'/>
<id>c4ad27e24c8f28ad62f1d3afffaaa6033a460996</id>
<content type='text'>
Found by valgrind test runs.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Found by valgrind test runs.
</pre>
</div>
</content>
</entry>
<entry>
<title>Correct decoding of old funs (FUN_EXT)</title>
<updated>2019-05-29T14:31:06+00:00</updated>
<author>
<name>Björn Gustavsson</name>
<email>bjorn@erlang.org</email>
</author>
<published>2019-05-29T14:16:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=f53097e9f856281e7d8d89dc42716fb77b26e36e'/>
<id>f53097e9f856281e7d8d89dc42716fb77b26e36e</id>
<content type='text'>
If the environment is empty, don't access the free_vars pointer
and don't allocate a zero-size buffer. Better safe than sorry.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If the environment is empty, don't access the free_vars pointer
and don't allocate a zero-size buffer. Better safe than sorry.
</pre>
</div>
</content>
</entry>
<entry>
<title>Correct decoding of external funs</title>
<updated>2019-05-21T10:25:50+00:00</updated>
<author>
<name>Björn Gustavsson</name>
<email>bjorn@erlang.org</email>
</author>
<published>2019-05-21T08:43:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=da08da374cfa652374ddb46846550cc83798c2ab'/>
<id>da08da374cfa652374ddb46846550cc83798c2ab</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>erl_interface: Tweak bit string encode/decode API</title>
<updated>2019-04-26T17:43:53+00:00</updated>
<author>
<name>Sverker Eriksson</name>
<email>sverker@erlang.org</email>
</author>
<published>2019-04-26T17:43:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=01aa8b82dd0f8229355ffd2bb2bc8e8f496d2df6'/>
<id>01aa8b82dd0f8229355ffd2bb2bc8e8f496d2df6</id>
<content type='text'>
to support zero copy decoding
and bit offset arguments for future unaligned bit strings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
to support zero copy decoding
and bit offset arguments for future unaligned bit strings.
</pre>
</div>
</content>
</entry>
<entry>
<title>erl_interface: Fix C++ compile error</title>
<updated>2019-04-23T15:28:53+00:00</updated>
<author>
<name>Sverker Eriksson</name>
<email>sverker@erlang.org</email>
</author>
<published>2019-04-23T15:28:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=a7120cd744bcb2d4fd4c3cf9211243153d5999cb'/>
<id>a7120cd744bcb2d4fd4c3cf9211243153d5999cb</id>
<content type='text'>
"export" is a reserved C++ keyword.

lib/erl_interface/include/ei.h:290:9:
error: expected ‘;’ after struct definition
         } export;
         ^
lib/erl_interface/include/ei.h:290:11:
error: expected unqualified-id before ‘export’
         } export;
           ^
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
"export" is a reserved C++ keyword.

lib/erl_interface/include/ei.h:290:9:
error: expected ‘;’ after struct definition
         } export;
         ^
lib/erl_interface/include/ei.h:290:11:
error: expected unqualified-id before ‘export’
         } export;
           ^
</pre>
</div>
</content>
</entry>
<entry>
<title>erl_interface: Add bitstring and export fun support</title>
<updated>2019-04-17T17:09:12+00:00</updated>
<author>
<name>Sverker Eriksson</name>
<email>sverker@erlang.org</email>
</author>
<published>2019-04-03T19:16:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=6465de7e3a5393a80ed0e2c63f012fd126de706f'/>
<id>6465de7e3a5393a80ed0e2c63f012fd126de706f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>erl_interface: Remove ei_get_type_internal()</title>
<updated>2019-04-12T16:28:29+00:00</updated>
<author>
<name>Sverker Eriksson</name>
<email>sverker@erlang.org</email>
</author>
<published>2019-04-05T17:26:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=a78bf4550d8bba67672624b73841c83614dd3db0'/>
<id>a78bf4550d8bba67672624b73841c83614dd3db0</id>
<content type='text'>
same as ei_get_type()
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
same as ei_get_type()
</pre>
</div>
</content>
</entry>
<entry>
<title>Update copyright year</title>
<updated>2018-06-18T12:51:18+00:00</updated>
<author>
<name>Henrik Nord</name>
<email>henrik@erlang.org</email>
</author>
<published>2018-06-18T12:51:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=5ca92e2eac1e84fd22f60e7abc3aa2b0ff1cb42b'/>
<id>5ca92e2eac1e84fd22f60e7abc3aa2b0ff1cb42b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>erl_interface: Optimize latin1_to_utf8 and friend</title>
<updated>2018-04-19T13:18:58+00:00</updated>
<author>
<name>Sverker Eriksson</name>
<email>sverker@erlang.org</email>
</author>
<published>2018-03-19T18:13:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=1ab478a7ce281f7cdce01df2fe04953c0770fdbc'/>
<id>1ab478a7ce281f7cdce01df2fe04953c0770fdbc</id>
<content type='text'>
to do word wise check/copy for pure ASCII
if ARCH allows it (x86 and amd64).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
to do word wise check/copy for pure ASCII
if ARCH allows it (x86 and amd64).
</pre>
</div>
</content>
</entry>
</feed>
