clock.h revision 74732
1/*
2 * Kernel interface to machine-dependent clock driver.
3 * Garrett Wollman, September 1994.
4 * This file is in the public domain.
5 *
6 * $FreeBSD: head/sys/ia64/include/clock.h 74732 2001-03-24 06:20:48Z jhb $
7 */
8
9#ifndef _MACHINE_CLOCK_H_
10#define	_MACHINE_CLOCK_H_
11
12#ifdef _KERNEL
13
14extern	int	disable_rtc_set;
15extern	int	wall_cmos_clock;
16extern	int	adjkerntz;
17
18int	sysbeep __P((int pitch, int period));
19int	acquire_timer2 __P((int mode));
20int	release_timer2 __P((void));
21void	handleclock __P((void *arg));
22
23#endif
24
25#endif /* !_MACHINE_CLOCK_H_ */
26