perf_regs.h 258 B

1234567891011121314
  1. #ifndef __PERF_REGS_H
  2. #define __PERF_REGS_H
  3. #ifdef HAVE_PERF_REGS
  4. #include <perf_regs.h>
  5. #else
  6. #define PERF_REGS_MASK 0
  7. static inline const char *perf_reg_name(int id __maybe_unused)
  8. {
  9. return NULL;
  10. }
  11. #endif /* HAVE_PERF_REGS */
  12. #endif /* __PERF_REGS_H */