git-svn-id: svn://ultimatepp.org/upp/trunk@14571 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2020-06-09 13:30:39 +00:00
parent 25f82c7973
commit 3cb3c9f0de

View file

@ -6,9 +6,9 @@ CONSOLE_APP_MAIN
{
StdLogSetup(LOG_COUT|LOG_FILE);
uint64 free, total;
GetSystemMemoryStatus(total, free);
uint64 total, available;
GetSystemMemoryStatus(total, available);
LOG("Total memory: " << (total >> 20) << " MB");
LOG("Free memory: " << (free >> 20) << " MB");
LOG("Available memory: " << (available >> 20) << " MB");
}