<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/lib/os_mon/src, branch KennethL-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>Fix disksup:get_disksup_data() for High Sierra</title>
<updated>2017-08-22T13:26:24+00:00</updated>
<author>
<name>Björn Gustavsson</name>
<email>bjorn@erlang.org</email>
</author>
<published>2017-08-22T06:09:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=d8ffcdd05ec718225d6888ab4919443a87cd7c6c'/>
<id>d8ffcdd05ec718225d6888ab4919443a87cd7c6c</id>
<content type='text'>
On macOS 10.13 (High Sierra), disksup cannot grab information
for any disks that use the new APFS file system. The reason
is that the invocation of /bin/df explicitly limits the
type of file systems to show:

    /bin/df -i -k -t ufs,hfs

Add 'apfs' to also look at disks with APFS:

    /bin/df -i -k -t ufs,hfs,apfs

That also works on older versions of macOS.

An alternative solution would be to use the -l flag to only
show local file systems. However, that would mean that USB
memory sticks would also show up, and it might not be desirable
to monitor them.

https://bugs.erlang.org/browse/ERL-461
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On macOS 10.13 (High Sierra), disksup cannot grab information
for any disks that use the new APFS file system. The reason
is that the invocation of /bin/df explicitly limits the
type of file systems to show:

    /bin/df -i -k -t ufs,hfs

Add 'apfs' to also look at disks with APFS:

    /bin/df -i -k -t ufs,hfs,apfs

That also works on older versions of macOS.

An alternative solution would be to use the -l flag to only
show local file systems. However, that would mean that USB
memory sticks would also show up, and it might not be desirable
to monitor them.

https://bugs.erlang.org/browse/ERL-461
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'maint'</title>
<updated>2017-01-24T10:35:01+00:00</updated>
<author>
<name>Björn-Egil Dahlberg</name>
<email>egil@erlang.org</email>
</author>
<published>2017-01-24T10:35:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=7a6d7efda47e96679cb5bf4f443b33c9b74cadbd'/>
<id>7a6d7efda47e96679cb5bf4f443b33c9b74cadbd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Adding s390x support</title>
<updated>2017-01-16T13:03:35+00:00</updated>
<author>
<name>Satyen Chimulkar</name>
<email>satyenc@us.ibm.com</email>
</author>
<published>2017-01-16T13:03:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=5670c3cf8dc65b4c220572c065b2b7d4b607cea9'/>
<id>5670c3cf8dc65b4c220572c065b2b7d4b607cea9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>warn_obsolete_guard is already default</title>
<updated>2016-11-29T13:15:32+00:00</updated>
<author>
<name>Richard Carlsson</name>
<email>richardc@klarna.com</email>
</author>
<published>2016-10-29T21:30:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=12f6a1b18fc573ce3f245bfd69e62fbaa378b80e'/>
<id>12f6a1b18fc573ce3f245bfd69e62fbaa378b80e</id>
<content type='text'>
Update compiler documentation and remove superfluous erlc flags.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update compiler documentation and remove superfluous erlc flags.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'jrobhoward/os_mon/fix-freebsd_get_os_wordsize/PR-1039/OTP-13601'</title>
<updated>2016-05-17T12:38:58+00:00</updated>
<author>
<name>Björn-Egil Dahlberg</name>
<email>egil@erlang.org</email>
</author>
<published>2016-05-17T12:38:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=0545c22c9c07c55569e067c57ec184f018a54947'/>
<id>0545c22c9c07c55569e067c57ec184f018a54947</id>
<content type='text'>
* jrobhoward/os_mon/fix-freebsd_get_os_wordsize/PR-1039/OTP-13601:
  Fix memsup:get_os_wordsize() on 64-bit Linux PPC
  os_mon: Test wordsize of memsup:get_os_wordsize/0
  Fix memsup:get_os_wordsize() on 64-bit FreeBSD
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* jrobhoward/os_mon/fix-freebsd_get_os_wordsize/PR-1039/OTP-13601:
  Fix memsup:get_os_wordsize() on 64-bit Linux PPC
  os_mon: Test wordsize of memsup:get_os_wordsize/0
  Fix memsup:get_os_wordsize() on 64-bit FreeBSD
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix memsup:get_os_wordsize() on 64-bit Linux PPC</title>
<updated>2016-05-16T12:42:19+00:00</updated>
<author>
<name>Björn-Egil Dahlberg</name>
<email>egil@erlang.org</email>
</author>
<published>2016-05-13T16:04:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=6b51a01cd6333c15a7abad8e9ee8ac3773f49965'/>
<id>6b51a01cd6333c15a7abad8e9ee8ac3773f49965</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 'mururu/os_mon/cpu-sup-osx/PR-1049/OTP-13597'</title>
<updated>2016-05-16T09:18:46+00:00</updated>
<author>
<name>Björn-Egil Dahlberg</name>
<email>egil@erlang.org</email>
</author>
<published>2016-05-16T09:18:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=f4c71989ae8dc3c290e9236f38543bee0a6a8e77'/>
<id>f4c71989ae8dc3c290e9236f38543bee0a6a8e77</id>
<content type='text'>
* mururu/os_mon/cpu-sup-osx/PR-1049/OTP-13597:
  os_mon: Implement cpu_sup:util/0,1 on OSX
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* mururu/os_mon/cpu-sup-osx/PR-1049/OTP-13597:
  os_mon: Implement cpu_sup:util/0,1 on OSX
</pre>
</div>
</content>
</entry>
<entry>
<title>os_mon: Fix unmatched return warnings</title>
<updated>2016-05-10T09:05:45+00:00</updated>
<author>
<name>Björn-Egil Dahlberg</name>
<email>egil@erlang.org</email>
</author>
<published>2016-05-10T09:05:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=72edb4e6d3ae5ea0fb356597a4f446178aee41ab'/>
<id>72edb4e6d3ae5ea0fb356597a4f446178aee41ab</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>os_mon: Implement cpu_sup:util/0,1 on OSX</title>
<updated>2016-05-05T17:11:45+00:00</updated>
<author>
<name>Yuki Ito</name>
<email>yuki@gnnk.net</email>
</author>
<published>2016-05-03T19:31:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=bd78695428545d9c75cd0243fe237b5b28a76512'/>
<id>bd78695428545d9c75cd0243fe237b5b28a76512</id>
<content type='text'>
cpu_sup:util/0,1 works on OSX as well.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
cpu_sup:util/0,1 works on OSX as well.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix memsup:get_os_wordsize() on 64-bit FreeBSD</title>
<updated>2016-04-30T04:31:33+00:00</updated>
<author>
<name>jrobhoward</name>
<email>jrobhoward@gmail.com</email>
</author>
<published>2016-04-30T04:31:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=4fa059fc27d0d6443e97df08662ca309ba7479e8'/>
<id>4fa059fc27d0d6443e97df08662ca309ba7479e8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
