1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef __PERF_EVLIST_HYBRID_H 3 #define __PERF_EVLIST_HYBRID_H 4 5 #include <linux/compiler.h> 6 #include <linux/kernel.h> 7 #include "evlist.h" 8 #include <unistd.h> 9 10 int evlist__add_default_hybrid(struct evlist *evlist, bool precise); 11 void evlist__warn_hybrid_group(struct evlist *evlist); 12 bool evlist__has_hybrid(struct evlist *evlist); 13 int evlist__fix_hybrid_cpus(struct evlist *evlist, const char *cpu_list); 14 15 #endif /* __PERF_EVLIST_HYBRID_H */ 16