cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

perf_api_probe.h (445B)


      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
      8bool perf_can_aux_sample(void);
      9bool perf_can_comm_exec(void);
     10bool perf_can_record_cpu_wide(void);
     11bool perf_can_record_switch_events(void);
     12bool perf_can_record_text_poke_events(void);
     13bool perf_can_sample_identifier(void);
     14bool perf_can_record_build_id(void);
     15bool perf_can_record_cgroup(void);
     16
     17#endif // __PERF_API_PROBE_H