| 318 | } |
| 319 | |
| 320 | bool System::CpuHyperThreading() |
| 321 | { |
| 322 | std::pair<int, int> cores = CpuTotalCores(); |
| 323 | return (cores.first != cores.second); |
| 324 | } |
| 325 | |
| 326 | int64_t System::RamTotal() |
| 327 | { |
nothing calls this directly
no outgoing calls
no test coverage detected