mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-25 21:17:50 +07:00
17 lines
344 B
C
17 lines
344 B
C
|
// 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 */
|