diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-01-29 11:36:39 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-01-29 11:36:39 +0000 |
commit | 3c99c0bc508245f66221675e5c87682e70a8ed42 (patch) | |
tree | b613402a73ac4da505804ca5121a5149306cffd3 /sys/i386/include/clock.h | |
parent | 60ca3996531cef221f62db2823cf48aa7e67737c (diff) |
Make tsc_freq a 64bit quantity.
Inspired by: http://www.theinquirer.net/?article=7481
Notes
Notes:
svn path=/head/; revision=110039
Diffstat (limited to 'sys/i386/include/clock.h')
-rw-r--r-- | sys/i386/include/clock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/include/clock.h b/sys/i386/include/clock.h index 38179a6b1306..f6ed717e426a 100644 --- a/sys/i386/include/clock.h +++ b/sys/i386/include/clock.h @@ -19,7 +19,7 @@ extern int disable_rtc_set; extern int statclock_disable; extern u_int timer_freq; extern int timer0_max_count; -extern u_int tsc_freq; +extern uint64_t tsc_freq; extern int tsc_is_broken; extern int wall_cmos_clock; #ifdef APIC_IO |