(cpu_index)
| 1103 | |
| 1104 | @staticmethod |
| 1105 | def GetCPUPathForId(cpu_index): |
| 1106 | ret = '/sys/devices/system/cpu/cpu' |
| 1107 | ret += str(cpu_index) |
| 1108 | ret += '/cpufreq/scaling_governor' |
| 1109 | return ret |
| 1110 | |
| 1111 | @staticmethod |
| 1112 | def GetCPUGovernor(): |
no test coverage detected