From 4fa059fc27d0d6443e97df08662ca309ba7479e8 Mon Sep 17 00:00:00 2001 From: jrobhoward Date: Fri, 29 Apr 2016 23:31:33 -0500 Subject: Fix memsup:get_os_wordsize() on 64-bit FreeBSD --- lib/os_mon/src/memsup.erl | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/os_mon/src/memsup.erl b/lib/os_mon/src/memsup.erl index e4b7c8c0ce..cc948c632a 100644 --- a/lib/os_mon/src/memsup.erl +++ b/lib/os_mon/src/memsup.erl @@ -699,6 +699,7 @@ get_os_wordsize_with_uname() -> case String of "x86_64" -> 64; "sparc64" -> 64; + "amd64" -> 64; _ -> 32 end. -- cgit v1.2.3