aboutsummaryrefslogtreecommitdiff
path: root/src/include/sysfs.h
blob: 949bb09f1f4616e4b4b7101c294e6878564b6058 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __ZENMONITOR_SYSFS_H__
#define __ZENMONITOR_SYSFS_H__

#include <glib.h>

#define SYSFS_DIR_CPUS "/sys/devices/system/cpu"

struct cpudev {
	gshort coreid;
	gshort cpuid;
};

struct cpudev * get_cpu_dev_ids(void);

#endif /* __ZENMONITOR_SYSFS_H__ */