LibSensors.h 468 B

12345678910111213141516171819
  1. #ifndef HEADER_LibSensors
  2. #define HEADER_LibSensors
  3. /*
  4. htop - linux/LibSensors.h
  5. (C) 2020-2023 htop dev team
  6. Released under the GNU GPLv2+, see the COPYING file
  7. in the source distribution for its full text.
  8. */
  9. #include "linux/LinuxMachine.h"
  10. int LibSensors_init(void);
  11. void LibSensors_cleanup(void);
  12. int LibSensors_reload(void);
  13. void LibSensors_getCPUTemperatures(CPUData* cpus, unsigned int existingCPUs, unsigned int activeCPUs);
  14. #endif /* HEADER_LibSensors */