xref: /original-bsd/sys/luna68k/stand/kern_clock.c (revision 81aa1937)
1 /*
2  * Copyright (c) 1992 OMRON Corporation.
3  * Copyright (c) 1992 The Regents of the University of California.
4  * All rights reserved.
5  *
6  * This code is derived from software contributed to Berkeley by
7  * OMRON Corporation.
8  *
9  * %sccs.include.redist.c%
10  *
11  *	@(#)kern_clock.c	7.1 (Berkeley) 12/13/92
12  */
13 
14 #include <sys/types.h>
15 
16 /*
17  * The hz hardware interval timer.
18  * We update the events relating to real time.
19  * If this timer is also being used to gather statistics,
20  * we run through the statistics gathering routine as well.
21  */
22 /*ARGSUSED*/
23 hardclock(pc, ps)
24 	caddr_t pc;
25 	int ps;
26 {
27 }
28