fs/ext4/inode.c: use pr_warn_ratelimited()
[linux/fpc-iii.git] / tools / perf / util / cpumap.h
blobf7a4f42f6307fb522299ea48d1126e6d08ffda71
1 #ifndef __PERF_CPUMAP_H
2 #define __PERF_CPUMAP_H
4 struct cpu_map {
5 int nr;
6 int map[];
7 };
9 struct cpu_map *cpu_map__new(const char *cpu_list);
10 struct cpu_map *cpu_map__dummy_new(void);
11 void *cpu_map__delete(struct cpu_map *map);
13 #endif /* __PERF_CPUMAP_H */