freebsd-dev/sys/alpha/include/clock.h
1998-07-22 08:26:23 +00:00

25 lines
503 B
C

/*
* Kernel interface to machine-dependent clock driver.
* Garrett Wollman, September 1994.
* This file is in the public domain.
*
* $Id: clock.h,v 1.1 1998/06/10 10:54:35 dfr Exp $
*/
#ifndef _MACHINE_CLOCK_H_
#define _MACHINE_CLOCK_H_
#ifdef KERNEL
extern int wall_cmos_clock;
extern int adjkerntz;
void DELAY __P((int usec));
int sysbeep __P((int pitch, int period));
int acquire_timer2 __P((int mode));
int release_timer2 __P((void));
#endif /* KERNEL */
#endif /* !_MACHINE_CLOCK_H_ */