From 831649233e498c5aa8e0e038bcf5949abe8eb2c8 Mon Sep 17 00:00:00 2001 From: Reece Date: Thu, 20 Jan 2022 21:21:33 +0000 Subject: [PATCH] [*] I've seen reports that apple is special. Only documentation on google relating to this is dated 1993 and something irrelevant with new theme, also dated 1993. --- Source/HWInfo/RamInfo.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/HWInfo/RamInfo.cpp b/Source/HWInfo/RamInfo.cpp index 9c3edc30..abc187d4 100644 --- a/Source/HWInfo/RamInfo.cpp +++ b/Source/HWInfo/RamInfo.cpp @@ -58,7 +58,10 @@ namespace Aurora::HWInfo struct rusage usage; getrusage(RUSAGE_SELF, &usage); - auto used = AuUInt64(usage.ru_maxrss) * 1024; + auto used = AuUInt64(usage.ru_maxrss) + #if !defined(AURORA_IS_XNU_DERIVED) + * 1024; + #endif return RamStat {used, max}; #else