f645b0b51c
Move relevant variables to <sys/clock.h> and fix #includes as necessary. Use libkern's much more time- & spamce-efficient BCD routines.
25 lines
412 B
C
25 lines
412 B
C
/*-
|
|
* Kernel interface to machine-dependent clock driver.
|
|
* Garrett Wollman, September 1994.
|
|
* This file is in the public domain.
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#ifndef _MACHINE_CLOCK_H_
|
|
#define _MACHINE_CLOCK_H_
|
|
|
|
#ifdef _KERNEL
|
|
|
|
struct trapframe;
|
|
|
|
int sysbeep(int pitch, int period);
|
|
int acquire_timer2(int mode);
|
|
int release_timer2(void);
|
|
|
|
void decr_intr(struct trapframe *);
|
|
|
|
#endif
|
|
|
|
#endif /* !_MACHINE_CLOCK_H_ */
|