From b683d84df1900dda04e291316c68c0025ad6321c Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 11 Dec 2018 16:26:33 +0400 Subject: [PATCH] Report memory usage in MB. --- .../SourceFiles/platform/win/specific_win.cpp | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Telegram/SourceFiles/platform/win/specific_win.cpp b/Telegram/SourceFiles/platform/win/specific_win.cpp index 82f435fce..683097d6a 100644 --- a/Telegram/SourceFiles/platform/win/specific_win.cpp +++ b/Telegram/SourceFiles/platform/win/specific_win.cpp @@ -750,18 +750,19 @@ void psWriteDump() { GetCurrentProcess(), &data, sizeof(data))) { + const auto mb = 1024 * 1024; CrashReports::dump() << "Memory-usage: " - << data.PeakWorkingSetSize - << " (peak), " - << data.WorkingSetSize - << " (current)\n"; + << (data.PeakWorkingSetSize / mb) + << " MB (peak), " + << (data.WorkingSetSize / mb) + << " MB (current)\n"; CrashReports::dump() << "Pagefile-usage: " - << data.PeakPagefileUsage - << " (peak), " - << data.PagefileUsage - << " (current)\n"; + << (data.PeakPagefileUsage / mb) + << " MB (peak), " + << (data.PagefileUsage / mb) + << " MB (current)\n"; } #endif // TDESKTOP_DISABLE_CRASH_REPORTS }