mirror of
https://github.com/opnsense/src.git
synced 2026-03-14 22:53:16 -04:00
20 lines
325 B
C
20 lines
325 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
|
|
|
|
#define CLOCK_VECTOR 254
|
|
|
|
extern uint64_t ia64_clock_reload;
|
|
|
|
#endif
|
|
|
|
#endif /* !_MACHINE_CLOCK_H_ */
|