diff options
author | Lukas Larsson <[email protected]> | 2012-01-12 14:47:28 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2012-01-25 14:16:00 +0100 |
commit | 373f3227400d2cabe9c7cf3170b1cad4f5c2488a (patch) | |
tree | bff880c28dfc5dc273715554e945ebb4ef865d6e /lib/os_mon/src/memsup.erl | |
parent | b8b3de6260240c7eb0d7bebec3eeb833bb4ff0d7 (diff) | |
download | otp-373f3227400d2cabe9c7cf3170b1cad4f5c2488a.tar.gz otp-373f3227400d2cabe9c7cf3170b1cad4f5c2488a.tar.bz2 otp-373f3227400d2cabe9c7cf3170b1cad4f5c2488a.zip |
Look for port in priv/bin/arch/ as well as priv/bin/
Diffstat (limited to 'lib/os_mon/src/memsup.erl')
-rw-r--r-- | lib/os_mon/src/memsup.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/os_mon/src/memsup.erl b/lib/os_mon/src/memsup.erl index ba07a529bc..49533da1f7 100644 --- a/lib/os_mon/src/memsup.erl +++ b/lib/os_mon/src/memsup.erl @@ -802,8 +802,7 @@ port_init() -> port_idle(Port). start_portprogram() -> - Command = filename:join([code:priv_dir(os_mon), "bin", "memsup"]), - open_port({spawn, Command}, [{packet, 1}]). + os_mon:open_port("memsup",[{packet,1}]). %% The connected process loops are a bit awkward (several different %% functions doing almost the same thing) as |