Skip to content

Instantly share code, notes, and snippets.

@stevedoyle
stevedoyle / cpu_freq
Last active February 12, 2024 01:01
Get CPU frequency (Linux platforms - /proc/cpuinfo)
#include <iostream>
#include <fstream>
#include <string>
#include <stdint.h>
#include <pcre.h>
using namespace std;
uint32_t cpufreq()
{