diff options
| author | Björn-Egil Dahlberg <[email protected]> | 2016-05-13 18:04:37 +0200 |
|---|---|---|
| committer | Björn-Egil Dahlberg <[email protected]> | 2016-05-16 14:42:19 +0200 |
| commit | 6b51a01cd6333c15a7abad8e9ee8ac3773f49965 (patch) | |
| tree | bb392388cee7851af3dfe5683bacf6147a833be3 | |
| parent | 3893aac866a366dfb8259ad9d5d877952d5c48dc (diff) | |
| download | otp-6b51a01cd6333c15a7abad8e9ee8ac3773f49965.tar.gz otp-6b51a01cd6333c15a7abad8e9ee8ac3773f49965.tar.bz2 otp-6b51a01cd6333c15a7abad8e9ee8ac3773f49965.zip | |
Fix memsup:get_os_wordsize() on 64-bit Linux PPC
| -rw-r--r-- | lib/os_mon/src/memsup.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/os_mon/src/memsup.erl b/lib/os_mon/src/memsup.erl index cc948c632a..471b344089 100644 --- a/lib/os_mon/src/memsup.erl +++ b/lib/os_mon/src/memsup.erl @@ -700,6 +700,7 @@ get_os_wordsize_with_uname() -> "x86_64" -> 64; "sparc64" -> 64; "amd64" -> 64; + "ppc64" -> 64; _ -> 32 end. |
