| 40 | } |
| 41 | |
| 42 | std::string PresentMonSession::GetCpuName() { |
| 43 | if (cpu_) { |
| 44 | return cpu_->GetCpuName(); |
| 45 | } |
| 46 | else { |
| 47 | return std::string{ "UNKOWN_CPU" }; |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | double PresentMonSession::GetCpuPowerLimit() { |
| 52 | if (cpu_) { |
no outgoing calls
no test coverage detected