File size: 294 Bytes
8b7c501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include <stdint.h>

#define CPUINFO_MACH_MAX_CACHE_LEVELS 8


struct cpuinfo_mach_topology {
	uint32_t packages;
	uint32_t cores;
	uint32_t threads;
	uint32_t threads_per_cache[CPUINFO_MACH_MAX_CACHE_LEVELS];
};


struct cpuinfo_mach_topology cpuinfo_mach_detect_topology(void);