summaryrefslogtreecommitdiffstats
path: root/tools/perf/util/evswitch.h
blob: bb88e8002f39b938fff44b5795135184c81fa42f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: GPL-2.0-only
// Copyright (C) 2019, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
#ifndef __PERF_EVSWITCH_H
#define __PERF_EVSWITCH_H 1

#include <stdbool.h>

struct evsel;

struct evswitch {
	struct evsel *on, *off;
	bool	     discarding;
	bool	     show_on_off_events;
};

#endif /* __PERF_EVSWITCH_H */