cpumap.h 258 B

1234567891011121314
  1. #ifndef __PERF_CPUMAP_H
  2. #define __PERF_CPUMAP_H
  3. struct cpu_map {
  4. int nr;
  5. int map[];
  6. };
  7. struct cpu_map *cpu_map__new(const char *cpu_list);
  8. struct cpu_map *cpu_map__dummy_new(void);
  9. void cpu_map__delete(struct cpu_map *map);
  10. #endif /* __PERF_CPUMAP_H */