Helper function to count set bits in the processor mask.
| 14 | |
| 15 | // Helper function to count set bits in the processor mask. |
| 16 | int countBitsSet(ULONG_PTR bitMask) |
| 17 | { |
| 18 | int result = 0; |
| 19 | while (bitMask != 0) { |
| 20 | result += (int)(bitMask & 1); |
| 21 | bitMask >>= 1; |
| 22 | } |
| 23 | return result; |
| 24 | } |
| 25 | |
| 26 | bool getProcessorInfoFromOS(int& cpus, int& cores, int& logicalCores, double& clockSpeed) |
| 27 | { |
no outgoing calls
no test coverage detected