<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/lib/observer, branch master</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 'maint'</title>
<updated>2019-08-12T13:19:04+00:00</updated>
<author>
<name>John Högberg</name>
<email>john@erlang.org</email>
</author>
<published>2019-08-12T13:19:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=1f6cb54c0ada901fb6dc6efba282c1d499a8e0a8'/>
<id>1f6cb54c0ada901fb6dc6efba282c1d499a8e0a8</id>
<content type='text'>
* maint:
  erts: Create heap binaries in binary:split/2-3
  erts: Create heap binaries in binary_part/2-3
  erts: Create heap binaries in split_binary/2
  erts: Create heap binaries in bs_get_binary2
  erts: Remove size check in bs_start_match
  erts: Disallow binaries whose size in bits exceeds UWORD_MAX
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* maint:
  erts: Create heap binaries in binary:split/2-3
  erts: Create heap binaries in binary_part/2-3
  erts: Create heap binaries in split_binary/2
  erts: Create heap binaries in bs_get_binary2
  erts: Remove size check in bs_start_match
  erts: Disallow binaries whose size in bits exceeds UWORD_MAX
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'john/erts/bs_get_binary2-heap-binaries/OTP-15977' into maint</title>
<updated>2019-08-12T13:18:56+00:00</updated>
<author>
<name>John Högberg</name>
<email>john@erlang.org</email>
</author>
<published>2019-08-12T13:18:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=65874ca12f22c0135399c9161b3091a39e40e20f'/>
<id>65874ca12f22c0135399c9161b3091a39e40e20f</id>
<content type='text'>
* john/erts/bs_get_binary2-heap-binaries/OTP-15977:
  erts: Create heap binaries in binary:split/2-3
  erts: Create heap binaries in binary_part/2-3
  erts: Create heap binaries in split_binary/2
  erts: Create heap binaries in bs_get_binary2
  erts: Remove size check in bs_start_match
  erts: Disallow binaries whose size in bits exceeds UWORD_MAX
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* john/erts/bs_get_binary2-heap-binaries/OTP-15977:
  erts: Create heap binaries in binary:split/2-3
  erts: Create heap binaries in binary_part/2-3
  erts: Create heap binaries in split_binary/2
  erts: Create heap binaries in bs_get_binary2
  erts: Remove size check in bs_start_match
  erts: Disallow binaries whose size in bits exceeds UWORD_MAX
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'maint'</title>
<updated>2019-08-09T13:20:05+00:00</updated>
<author>
<name>Dan Gudmundsson</name>
<email>dgud@erlang.org</email>
</author>
<published>2019-08-09T13:20:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=88acd34993e88d90463c45e7453e121acae890e5'/>
<id>88acd34993e88d90463c45e7453e121acae890e5</id>
<content type='text'>
* maint:
  Handle clicking links more than once in Observer's "Expanded term"
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* maint:
  Handle clicking links more than once in Observer's "Expanded term"
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'upstream/pr/2201' into maint</title>
<updated>2019-08-09T13:14:57+00:00</updated>
<author>
<name>Dan Gudmundsson</name>
<email>dgud@erlang.org</email>
</author>
<published>2019-08-09T13:14:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=f4c00eb745207d33dbcc330433e074329aab61c7'/>
<id>f4c00eb745207d33dbcc330433e074329aab61c7</id>
<content type='text'>
* upstream/pr/2201:
  Handle clicking links more than once in Observer's "Expanded term"

OTP-15980
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* upstream/pr/2201:
  Handle clicking links more than once in Observer's "Expanded term"

OTP-15980
</pre>
</div>
</content>
</entry>
<entry>
<title>erts: Create heap binaries in bs_get_binary2</title>
<updated>2019-08-09T12:29:39+00:00</updated>
<author>
<name>John Högberg</name>
<email>john@erlang.org</email>
</author>
<published>2019-08-08T08:06:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=9f73f98ad6ddf70d30dfc0a1daf7c992dcc5061a'/>
<id>9f73f98ad6ddf70d30dfc0a1daf7c992dcc5061a</id>
<content type='text'>
ErlSubBin is a large struct that often dwarfs the region of memory
it points at, and it's common for them to refer to a ProcBin which
must be kept around as long as the SubBin lives, using up even more
heap space and keeping the referenced binary alive regardless of
how small the sub-binary is.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ErlSubBin is a large struct that often dwarfs the region of memory
it points at, and it's common for them to refer to a ProcBin which
must be kept around as long as the SubBin lives, using up even more
heap space and keeping the referenced binary alive regardless of
how small the sub-binary is.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'maint'</title>
<updated>2019-08-09T10:54:44+00:00</updated>
<author>
<name>Dan Gudmundsson</name>
<email>dgud@erlang.org</email>
</author>
<published>2019-08-09T10:54:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=a18ec86bb6f860456af992d78abf0dae51bb713a'/>
<id>a18ec86bb6f860456af992d78abf0dae51bb713a</id>
<content type='text'>
* maint:
  mnesia: Bump protocol version
  mnesia: Introduce sync_asym_trans protocol
  observer: Fixes for html viewers
  observer: Support darkmode gui
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* maint:
  mnesia: Bump protocol version
  mnesia: Introduce sync_asym_trans protocol
  observer: Fixes for html viewers
  observer: Support darkmode gui
</pre>
</div>
</content>
</entry>
<entry>
<title>Add 'make dialyzer' target to top and apps</title>
<updated>2019-06-26T08:08:19+00:00</updated>
<author>
<name>Lukas Larsson</name>
<email>lukas@erlang.org</email>
</author>
<published>2019-06-20T14:09:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=ce2a4e4409a5b0da5522056c29df27ab0afe95ee'/>
<id>ce2a4e4409a5b0da5522056c29df27ab0afe95ee</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add "make test" command for root and application directories</title>
<updated>2019-06-26T06:24:57+00:00</updated>
<author>
<name>Kjell Winblad</name>
<email>kjellwinblad@gmail.com</email>
</author>
<published>2019-06-11T15:36:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=2f246b551cca5ca7ca9187282e42650976a65cbb'/>
<id>2f246b551cca5ca7ca9187282e42650976a65cbb</id>
<content type='text'>
The added make target is described in HOWTO/TESTING.md.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The added make target is described in HOWTO/TESTING.md.
</pre>
</div>
</content>
</entry>
<entry>
<title>observer: Fixes for html viewers</title>
<updated>2019-06-25T14:22:13+00:00</updated>
<author>
<name>Dan Gudmundsson</name>
<email>dgud@erlang.org</email>
</author>
<published>2019-06-25T14:22:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=1274131e7dbfe0d351b7bc6a99bdd8198a673385'/>
<id>1274131e7dbfe0d351b7bc6a99bdd8198a673385</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>observer: Support darkmode gui</title>
<updated>2019-06-19T13:23:04+00:00</updated>
<author>
<name>Dan Gudmundsson</name>
<email>dgud@erlang.org</email>
</author>
<published>2019-06-19T13:23:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=528e55e44cf1ee32d90d8c4c4d5790d18cae79bc'/>
<id>528e55e44cf1ee32d90d8c4c4d5790d18cae79bc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
