Browse Source

Added printout of SystemStats::getNumPhysicalCpus() to demo app

tags/2021-05-28
jules 8 years ago
parent
commit
35f78e15fb
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      examples/Demo/Source/Demos/SystemInfoDemo.cpp

+ 2
- 1
examples/Demo/Source/Demos/SystemInfoDemo.cpp View File

@@ -122,7 +122,8 @@ static String getAllSystemInfo()
<< newLine;
systemInfo
<< "Number of CPUs: " << SystemStats::getNumCpus() << newLine
<< "Number of logical CPUs: " << SystemStats::getNumCpus() << newLine
<< "Number of physical CPUs: " << SystemStats::getNumPhysicalCpus() << newLine
<< "Memory size: " << SystemStats::getMemorySizeInMegabytes() << " MB" << newLine
<< "CPU vendor: " << SystemStats::getCpuVendor() << newLine
<< "CPU model: " << SystemStats::getCpuModel() << newLine


Loading…
Cancel
Save