summaryrefslogtreecommitdiffstats
path: root/tools/perf/util/evlist.h
blob: 48db91a8abf3b747d76d14e1e948dcf1d2702bcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __PERF_EVLIST_H
#define __PERF_EVLIST_H 1

#include <linux/list.h>

struct perf_evlist {
	struct list_head entries;
	int		 nr_entries;
};

struct perf_evsel;

struct perf_evlist *perf_evlist__new(void);
void perf_evlist__delete(struct perf_evlist *evlist);

void perf_evlist__add(struct perf_evlist *evlist, struct perf_evsel *entry);
int perf_evlist__add_default(struct perf_evlist *evlist);

#endif /* __PERF_EVLIST_H */