diff options
author | Henrik Nord <[email protected]> | 2011-04-08 17:36:25 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2011-04-08 17:36:42 +0200 |
commit | d80b35fae2b7aca58f8b9c00304591e5f8dfdcb9 (patch) | |
tree | 4f145e3ec85dd8ef5bde70fde7b8dd189e465cfb /lib/os_mon/src/memsup.erl | |
parent | e9f9c30b9c0ab94a615cc1dfa56cb36c03c804ea (diff) | |
parent | ca1223e5b5c8b25e92fef0d97a6a12abad8ccd71 (diff) | |
download | otp-d80b35fae2b7aca58f8b9c00304591e5f8dfdcb9.tar.gz otp-d80b35fae2b7aca58f8b9c00304591e5f8dfdcb9.tar.bz2 otp-d80b35fae2b7aca58f8b9c00304591e5f8dfdcb9.zip |
Merge branch 'at/os_mon_netbsd_support' into dev
* at/os_mon_netbsd_support:
Add NetBSD support to memsup and disksup
OTP-9216
Diffstat (limited to 'lib/os_mon/src/memsup.erl')
-rw-r--r-- | lib/os_mon/src/memsup.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/os_mon/src/memsup.erl b/lib/os_mon/src/memsup.erl index 822e1f939c..8ed5e2d595 100644 --- a/lib/os_mon/src/memsup.erl +++ b/lib/os_mon/src/memsup.erl @@ -179,6 +179,7 @@ init([]) -> % Linux supports this. {unix, linux} -> true; {unix, openbsd} -> true; + {unix, netbsd} -> true; {unix, irix64} -> true; {unix, irix} -> true; {unix, sunos} -> true; @@ -612,6 +613,7 @@ code_change(Vsn, PrevState, "1.8") -> {unix, freebsd} -> false; {unix, linux} -> false; {unix, openbsd} -> true; + {unix, netbsd} -> true; {unix, sunos} -> true; {win32, _OSname} -> false; vxworks -> true |