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