mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-09 01:28:05 -04:00
17 lines
377 B
C
17 lines
377 B
C
#ifndef TOOLS_PERF_ARCH_X86_UTIL_TSC_H__
|
|
#define TOOLS_PERF_ARCH_X86_UTIL_TSC_H__
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct perf_tsc_conversion {
|
|
u16 time_shift;
|
|
u32 time_mult;
|
|
u64 time_zero;
|
|
};
|
|
|
|
struct perf_event_mmap_page;
|
|
|
|
int perf_read_tsc_conversion(const struct perf_event_mmap_page *pc,
|
|
struct perf_tsc_conversion *tc);
|
|
|
|
#endif /* TOOLS_PERF_ARCH_X86_UTIL_TSC_H__ */
|