summaryrefslogtreecommitdiff
path: root/components/OpenBSD/cpu.c
blob: 11f18128261098b6ed0a00e52f2981bd37db792e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* See LICENSE file for copyright and license details. */
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <sys/sysctl.h>

#include "../../util.h"

const char *
cpu_freq(void)
{
	int freq, mib[2];
	size_t size;

	mib[0] = CTL_HW;
	mib[1] = HW_CPUSPEED;

	size = sizeof(freq);

	if (sysctl(mib, 2, &freq, &size, NULL, 0) == -1) {
		fprintf(stderr, "sysctl 'HW_CPUSPEED': %s\n", strerror(errno));
		return NULL;
	}

	return bprintf("%d", freq);
}