diff options
author | John Baldwin <jhb@FreeBSD.org> | 2005-03-09 15:33:58 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2005-03-09 15:33:58 +0000 |
commit | dd1d2889f22109dd7447de9d6fbb736f22b85ee2 (patch) | |
tree | dd7e73a2487a335f14973e3880536ae694f3acf5 /sys/i386/include/clock.h | |
parent | afa3570d6f618e1a7f4cb956a90be361bc9767ab (diff) |
- Remove the BURN_BRIDGES marked support for hooking into the ISA timer 0
interrupt.
- Remove the timer_func variable as it now has a static value of
hardclock() and is only used in one place.
Axe borrowed from: phk
Notes
Notes:
svn path=/head/; revision=143324
Diffstat (limited to 'sys/i386/include/clock.h')
-rw-r--r-- | sys/i386/include/clock.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/i386/include/clock.h b/sys/i386/include/clock.h index 88e864fb21a5..ddc1d760668d 100644 --- a/sys/i386/include/clock.h +++ b/sys/i386/include/clock.h @@ -39,10 +39,6 @@ int rtcin(int val); int acquire_timer1(int mode); int release_timer1(void); #endif -#ifndef BURN_BRIDGES -int acquire_timer0(int rate, void (*function)(struct clockframe *frame)); -int release_timer0(void); -#endif int sysbeep(int pitch, int period); void timer_restore(void); void init_TSC(void); |