You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
344 B
17 lines
344 B
#ifndef THERMAL_H |
|
#define THERMAL_H |
|
|
|
#include "../sysinfo.h" |
|
|
|
#ifdef HAVE_EEZE |
|
int thermal_udev_get(Tempthread *tth); |
|
#endif |
|
|
|
#if defined __OpenBSD__ || defined __DragonFly__ || defined __FreeBSD__ |
|
int thermal_sysctl_get(Tempthread *tth); |
|
#endif |
|
|
|
int thermal_fallback_get(Tempthread *tth); |
|
void _thermal_config_updated(Instance *inst); |
|
|
|
#endif
|
|
|