Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.17-rc2 15 lines 480 B view raw
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 10int evlist__add_default_hybrid(struct evlist *evlist, bool precise); 11void evlist__warn_hybrid_group(struct evlist *evlist); 12bool evlist__has_hybrid(struct evlist *evlist); 13int evlist__fix_hybrid_cpus(struct evlist *evlist, const char *cpu_list); 14 15#endif /* __PERF_EVLIST_HYBRID_H */