We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a166ac5 + 049a403 commit 226e4adCopy full SHA for 226e4ad
src/service-app/classes/CpuWorker.ts
@@ -214,6 +214,10 @@ export class CpuWorker extends DaemonWorker {
214
let scalingDriver;
215
// Check settings for each core
216
for (const core of this.cpuCtrl.cores) {
217
+ if (core.coreIndex !== 0 && !core.online.readValue()) {
218
+ // Skip offline cores
219
+ continue;
220
+ }
221
if (profile.cpu.noTurbo !== true) { // Only attempt to enforce frequencies if noTurbo isn't set
222
scalingDriver = core.scalingDriver.readValueNT();
223
const coreAvailableFrequencies = core.scalingAvailableFrequencies.readValueNT();
0 commit comments