arch-tests.h 345 B

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