enlightenment/src/modules/sysinfo/cpuclock/cpuclock_sysctl.c

47 lines
897 B
C

#include <stdio.h>
#include <stdlib.h>
#if defined(__FreeBSD__) || defined(__DragonFly__)
# include <sys/sysctl.h>
#endif
#if defined(__OpenBSD__)
# include <sys/param.h>
# include <sys/resource.h>
# include <sys/sysctl.h>
#endif
#if defined(__OpenBSD__)
int
_cpuclock_sysctl_frequency(int new_perf)
{
int mib[] = {CTL_HW, HW_SETPERF};
size_t len = sizeof(new_perf);
if (sysctl(mib, 2, NULL, 0, &new_perf, len) == -1)
return 1;
return 0;
}
#elif defined(__FreeBSD__) || defined(__DragonFly__)
int
_cpuclock_sysctl_frequency(int new_perf)
{
if (sysctlbyname("dev.cpu.0.freq", NULL, NULL, &new_perf, sizeof(new_perf)) == -1)
return 1;
return 0;
}
#endif
#if defined(__FreeBSD__) || defined(__DragonFly__) || defined(__OpenBSD__)
int main(int argc, char **argv)
{
if (argc != 2)
exit(1 << 0);
return _cpuclock_sysctl_frequency(atoi(argv[1]));
}
#endif