Deleted Added
full compact
clock.h (4174) clock.h (7090)
1/*
2 * Kernel interface to machine-dependent clock driver.
3 * Garrett Wollman, September 1994.
4 * This file is in the public domain.
5 */
6
7#ifndef _MACHINE_CLOCK_H_
8#define _MACHINE_CLOCK_H_

--- 35 unchanged lines hidden (view full) ---

44 (*(otime) = *(ntime))
45#endif
46
47#if defined(KERNEL) && !defined(LOCORE)
48#include <sys/cdefs.h>
49#include <machine/frame.h>
50
51/*
1/*
2 * Kernel interface to machine-dependent clock driver.
3 * Garrett Wollman, September 1994.
4 * This file is in the public domain.
5 */
6
7#ifndef _MACHINE_CLOCK_H_
8#define _MACHINE_CLOCK_H_

--- 35 unchanged lines hidden (view full) ---

44 (*(otime) = *(ntime))
45#endif
46
47#if defined(KERNEL) && !defined(LOCORE)
48#include <sys/cdefs.h>
49#include <machine/frame.h>
50
51/*
52 * Kernel to clock driver interface.
53 */
54void inittodr __P((time_t base));
55void resettodr __P((void));
56void startrtclock __P((void));
57
58/*
59 * i386 to clock driver interface.
60 * XXX almost all of it is misplaced. i586 stuff is done in isa/clock.c
61 * and isa stuff is done in i386/microtime.s and i386/support.s.
62 */
63extern int adjkerntz;
64extern int disable_rtc_set;
65#ifdef I586_CPU
66extern int pentium_mhz;

--- 25 unchanged lines hidden ---
52 * i386 to clock driver interface.
53 * XXX almost all of it is misplaced. i586 stuff is done in isa/clock.c
54 * and isa stuff is done in i386/microtime.s and i386/support.s.
55 */
56extern int adjkerntz;
57extern int disable_rtc_set;
58#ifdef I586_CPU
59extern int pentium_mhz;

--- 25 unchanged lines hidden ---