perf_api_probe.h 373 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __PERF_API_PROBE_H
  3. #define __PERF_API_PROBE_H
  4. #include <stdbool.h>
  5. bool perf_can_aux_sample(void);
  6. bool perf_can_comm_exec(void);
  7. bool perf_can_record_cpu_wide(void);
  8. bool perf_can_record_switch_events(void);
  9. bool perf_can_record_text_poke_events(void);
  10. bool perf_can_sample_identifier(void);
  11. #endif // __PERF_API_PROBE_H