1#ifndef __PERF_CPUMAP_H 2#define __PERF_CPUMAP_H 3 4#include <stdio.h> 5 6struct cpu_map { 7 int nr; 8 int map[]; 9}; 10 11struct cpu_map *cpu_map__new(const char *cpu_list); 12struct cpu_map *cpu_map__dummy_new(void); 13void cpu_map__delete(struct cpu_map *map); 14 15size_t cpu_map__fprintf(struct cpu_map *map, FILE *fp); 16 17#endif /* __PERF_CPUMAP_H */ 18