mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-03 09:00:21 +00:00
Merged from sys/i386/isa/clock.c revision 1.164.
This commit is contained in:
parent
86a86b1be0
commit
84af0d0cd2
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=69614
@ -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));
|
||||
|
@ -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));
|
||||
|
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user