xref: /openbmc/linux/tools/perf/util/perf_api_probe.h (revision 8a4452ca29f9dc6a65e45a38c96af83b8ecb27fc)
1 
2 /* SPDX-License-Identifier: GPL-2.0 */
3 #ifndef __PERF_API_PROBE_H
4 #define __PERF_API_PROBE_H
5 
6 #include <stdbool.h>
7 
8 bool perf_can_aux_sample(void);
9 bool perf_can_comm_exec(void);
10 bool perf_can_record_cpu_wide(void);
11 bool perf_can_record_switch_events(void);
12 bool perf_can_record_text_poke_events(void);
13 bool perf_can_sample_identifier(void);
14 bool perf_can_record_build_id(void);
15 
16 #endif // __PERF_API_PROBE_H
17