1 1.1 kiyohara /*- 2 1.1 kiyohara * Kernel interface to machine-dependent clock driver. 3 1.1 kiyohara * Garrett Wollman, September 1994. 4 1.1 kiyohara * This file is in the public domain. 5 1.1 kiyohara * 6 1.1 kiyohara * $FreeBSD: src/sys/ia64/include/clock.h,v 1.12 2008/03/26 20:09:19 phk Exp $ 7 1.1 kiyohara */ 8 1.1 kiyohara 9 1.1 kiyohara #ifndef _MACHINE_CLOCK_H_ 10 1.1 kiyohara #define _MACHINE_CLOCK_H_ 11 1.1 kiyohara 12 1.1 kiyohara #ifdef _KERNEL 13 1.1 kiyohara 14 1.1 kiyohara #define CLOCK_VECTOR 254 15 1.1 kiyohara 16 1.1 kiyohara extern uint64_t ia64_clock_reload; 17 1.1 kiyohara extern uint64_t itc_frequency; 18 1.1 kiyohara 19 1.1 kiyohara void pcpu_initclock(void); 20 1.1 kiyohara 21 1.1 kiyohara #endif 22 1.1 kiyohara 23 1.1 kiyohara #endif /* !_MACHINE_CLOCK_H_ */ 24