summaryrefslogtreecommitdiffstats
path: root/tools/perf/lib/include/internal/evlist.h
blob: f9caab1fe3c38c0806312f0098c643d84c3af141 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __LIBPERF_INTERNAL_EVLIST_H
#define __LIBPERF_INTERNAL_EVLIST_H

struct perf_cpu_map;

struct perf_evlist {
	struct list_head	 entries;
	int			 nr_entries;
	bool			 has_user_cpus;
	struct perf_cpu_map	*cpus;
};

#endif /* __LIBPERF_INTERNAL_EVLIST_H */