Misc3: Add missing ram load

This commit is contained in:
Lightos1
2026-03-08 13:27:36 +01:00
committed by GitHub
parent 3fa2cfabd3
commit bde65f094d

View File

@@ -726,6 +726,11 @@ void Misc3(void*) {
nvIoctl(fd, NVGPU_GPU_IOCTL_PMU_GET_GPU_LOAD, &GPU_Load_u); nvIoctl(fd, NVGPU_GPU_IOCTL_PMU_GET_GPU_LOAD, &GPU_Load_u);
} }
SysClkContext sysclkCTX;
if (R_SUCCEEDED(sysclkIpcGetCurrentContext(&sysclkCTX))) {
partLoad[SysClkPartLoad_EMC] = sysclkCTX.partLoad[SysClkPartLoad_EMC];
}
mutexUnlock(&mutex_Misc); mutexUnlock(&mutex_Misc);
} while (!leventWait(&threadexit, 1'000'000'000)); // 1 second timeout } while (!leventWait(&threadexit, 1'000'000'000)); // 1 second timeout