xref: /csrg-svn/sys/luna68k/stand/kern_clock.c (revision 63199)
157089Sakito /*
257089Sakito  * Copyright (c) 1992 OMRON Corporation.
3*63199Sbostic  * Copyright (c) 1992, 1993
4*63199Sbostic  *	The Regents of the University of California.  All rights reserved.
557089Sakito  *
657089Sakito  * This code is derived from software contributed to Berkeley by
757089Sakito  * OMRON Corporation.
857089Sakito  *
957089Sakito  * %sccs.include.redist.c%
1057089Sakito  *
11*63199Sbostic  *	@(#)kern_clock.c	8.1 (Berkeley) 06/10/93
1257089Sakito  */
1357089Sakito 
1457089Sakito #include <sys/types.h>
1557089Sakito 
1657089Sakito /*
1757089Sakito  * The hz hardware interval timer.
1857089Sakito  * We update the events relating to real time.
1957089Sakito  * If this timer is also being used to gather statistics,
2057089Sakito  * we run through the statistics gathering routine as well.
2157089Sakito  */
2257089Sakito /*ARGSUSED*/
hardclock(pc,ps)2357089Sakito hardclock(pc, ps)
2457089Sakito 	caddr_t pc;
2557089Sakito 	int ps;
2657089Sakito {
2757089Sakito }
28