tsc.h 254 B

123456789101112
  1. #ifndef __PERF_TSC_H
  2. #define __PERF_TSC_H
  3. #include <linux/types.h>
  4. #include "../arch/x86/util/tsc.h"
  5. u64 perf_time_to_tsc(u64 ns, struct perf_tsc_conversion *tc);
  6. u64 tsc_to_perf_time(u64 cyc, struct perf_tsc_conversion *tc);
  7. u64 rdtsc(void);
  8. #endif