2019-07-21 11:24:21 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef __LIBPERF_INTERNAL_EVSEL_H
|
|
|
|
#define __LIBPERF_INTERNAL_EVSEL_H
|
|
|
|
|
2019-07-21 11:24:29 +00:00
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/perf_event.h>
|
|
|
|
|
2019-07-21 11:24:37 +00:00
|
|
|
struct perf_cpu_map;
|
|
|
|
|
2019-07-21 11:24:21 +00:00
|
|
|
struct perf_evsel {
|
2019-07-21 11:24:37 +00:00
|
|
|
struct list_head node;
|
|
|
|
struct perf_event_attr attr;
|
|
|
|
struct perf_cpu_map *cpus;
|
2019-07-21 11:24:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __LIBPERF_INTERNAL_EVSEL_H */
|