Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v2.6.21-rc2 16 lines 410 B view raw
1#ifndef _ASMi386_TIMER_H 2#define _ASMi386_TIMER_H 3#include <linux/init.h> 4#include <linux/pm.h> 5 6#define TICK_SIZE (tick_nsec / 1000) 7void setup_pit_timer(void); 8/* Modifiers for buggy PIT handling */ 9extern int pit_latch_buggy; 10extern int timer_ack; 11extern int no_timer_check; 12extern unsigned long long (*custom_sched_clock)(void); 13extern int no_sync_cmos_clock; 14extern int recalibrate_cpu_khz(void); 15 16#endif