Merged from sys/i386/isa/clock.c revision 1.164.

This commit is contained in:
KATO Takenori 2000-12-05 09:35:54 +00:00
parent 86a86b1be0
commit 84af0d0cd2
3 changed files with 15 additions and 0 deletions

View File

@ -194,7 +194,12 @@ static void rtc_serialcom __P((int));
static int rtc_inb __P((void));
static void rtc_outb __P((int));
#endif
#if defined(I386_CPU) || defined(I486_CPU)
u_int tsc_present; /* Not static; other parts of the kernel
* Need to know this */
#else
static u_int tsc_present;
#endif
static unsigned i8254_get_timecount __P((struct timecounter *tc));
static unsigned tsc_get_timecount __P((struct timecounter *tc));

View File

@ -194,7 +194,12 @@ static void rtc_serialcom __P((int));
static int rtc_inb __P((void));
static void rtc_outb __P((int));
#endif
#if defined(I386_CPU) || defined(I486_CPU)
u_int tsc_present; /* Not static; other parts of the kernel
* Need to know this */
#else
static u_int tsc_present;
#endif
static unsigned i8254_get_timecount __P((struct timecounter *tc));
static unsigned tsc_get_timecount __P((struct timecounter *tc));

View File

@ -194,7 +194,12 @@ static void rtc_serialcom __P((int));
static int rtc_inb __P((void));
static void rtc_outb __P((int));
#endif
#if defined(I386_CPU) || defined(I486_CPU)
u_int tsc_present; /* Not static; other parts of the kernel
* Need to know this */
#else
static u_int tsc_present;
#endif
static unsigned i8254_get_timecount __P((struct timecounter *tc));
static unsigned tsc_get_timecount __P((struct timecounter *tc));