• 21.09.2026, 09:54
  • S’inscrire
  • Connexion
  • Vous n’êtes pas connecté.

 

Bonjour, visiteur, bienvenue sur les forums Aqua Computer Forum. Si c’est votre première visite, nous vous invitons à consulter l’Aide. Elle vous expliquera le fonctionnement de cette page. Pour avoir accès à toutes les fonctionnalités, vous devez vous inscrire. Pour cela, veuillez utiliser le formulaire d’enregistrement, ou bien lisez plus d’informations sur la procédure d’enregistrement. Si vous êtes déjà enregistré, veuillez vous connecter.

Jeff3F

Junior Member

CPU temps no longer showing up (x.92, win11)

dimanche 16 août 2026, 17:04

Hi-- never mind, a simple windows update and reboot solved this. I had the issue for a few days where the CPU temp and speed (from the aquasuite service) weren't reporting, but other devices were working normally (SSD or GPU temps were reporting normally).

Using X.92 version of Aquasuite, updated win11, an MSI AM5 mobo. Is this something that MSI/mobo drivers could have caused? I was also bouncing between MSI center, SignalRGB, and Corsair iCUE to get the RGB (mobo headers) working how I wanted.



So it's solved, and here if someone else has the same issue and can learn from my solution. windows update and reboot FTW! Thank you and sorry for the trouble.

Ce message a été modifié 1 fois. Dernière modification effectuée par "Jeff3F" (16 août 2026, 17:16)

Speedy-VI

Senior Member

lundi 17 août 2026, 06:10

It is something iCue could cause. Corsair refuses to use or respect hardware sensor mutex locks, so it can and does cause polling collisions, which can result in erroneous sensor readings, freezes, high CPU usage, and in some cases, crashes. Corsair was shown how to poll sensors correctly, and they did implement a mutex in iCue for awhile many years ago. For some reason, they stopped doing it. iCue is like a drunk with a machinegun, spitting out sensor polling requests with no regard for the state of the sensor, or other software that may be polling it. Here is a quick description of how programs responsibly poll hardware sensors, which iCue does not do.
  1. When two programs both use a mutex to poll a hardware sensor, they coordinate their access via the mutex.
  2. Program A attempts to poll the sensor and, as part of this process, locks the mutex associated with the sensor. This mutex lock signals that Program A has exclusive access to poll the sensor.
  3. Program B then tries to poll the sensor as well, but before it can proceed, it encounters the locked mutex.
  4. Because Program B is also programmed to respect the mutex, it will enter a waiting state. This means Program B will not complete the sensor poll until the mutex is unlocked.
  5. Once Program A has completed its polling and releases the mutex, Program B can then acquire the lock, allowing it to proceed with its own sensor polling.
  6. This mutual respect for the mutex ensures that only one program polls the sensor at a time, preventing polling collisions and ensuring data integrity.
This blatant disregard for proper sensor polling is one of the reasons that I refuse to install Corsair iCue on any of my systems. It can do some RGB things that Aquasuite cannot do, but those things are not worth the headaches.