arch-tests.h 418 B

12345678910111213141516171819
  1. #ifndef ARCH_TESTS_H
  2. #define ARCH_TESTS_H
  3. /* Tests */
  4. int test__rdpmc(int subtest);
  5. int test__perf_time_to_tsc(int subtest);
  6. int test__insn_x86(int subtest);
  7. int test__intel_cqm_count_nmi_context(int subtest);
  8. #ifdef HAVE_DWARF_UNWIND_SUPPORT
  9. struct thread;
  10. struct perf_sample;
  11. int test__arch_unwind_sample(struct perf_sample *sample,
  12. struct thread *thread);
  13. #endif
  14. extern struct test arch_tests[];
  15. #endif