summaryrefslogtreecommitdiffstats
path: root/runtime/autoconf-tsc-khz.c
blob: 6c3f453e282db136e57513e6fd8bf4bdc8a15c45 (plain)
1
2
3
4
5
6
7
#include <linux/version.h>
#include <asm/tsc.h>

#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)) && defined(__i386__)
#error "tsc_khz is not exported"
#endif
unsigned int *ptsc = &tsc_khz;