2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-18 18:23:53 +08:00
linux-next/tools/perf/util/evswitch.h

19 lines
417 B
C
Raw Normal View History

// 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;
};
bool evswitch__discard(struct evswitch *evswitch, struct evsel *evsel);
#endif /* __PERF_EVSWITCH_H */