1 /*
2 * Copyright (c) 1992 OMRON Corporation.
3 * Copyright (c) 1992, 1993
4 * The Regents of the University of California. 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 8.1 (Berkeley) 06/10/93
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*/
hardclock(pc,ps)23 hardclock(pc, ps)
24 caddr_t pc;
25 int ps;
26 {
27 }
28