diff options
author | iwasaki <iwasaki@FreeBSD.org> | 2001-09-04 16:02:06 +0000 |
---|---|---|
committer | iwasaki <iwasaki@FreeBSD.org> | 2001-09-04 16:02:06 +0000 |
commit | 878a79c3e6de0481128689fbe94fb8cab74174c0 (patch) | |
tree | 8a086694659c8036602488a9827a9d6cebf5ab57 /sys/i386/include | |
parent | c4a32defbf6710432c888f3ef40a5255c45ecedc (diff) | |
download | FreeBSD-src-878a79c3e6de0481128689fbe94fb8cab74174c0.zip FreeBSD-src-878a79c3e6de0481128689fbe94fb8cab74174c0.tar.gz |
Reenable RTC interrupts after wakeup. Some laptops have a problem
with system statistics monitoring tools (such as systat, vmstat...)
because of stopping RTC interrupts generation.
Restore all the timers (RTC and i8254) atomically.
Reviewed by: bde
MFC after: 1 week
Diffstat (limited to 'sys/i386/include')
-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 c3d0e32..20bd09d 100644 --- a/sys/i386/include/clock.h +++ b/sys/i386/include/clock.h @@ -43,7 +43,7 @@ int acquire_timer1 __P((int mode)); int release_timer1 __P((void)); #endif int sysbeep __P((int pitch, int period)); -void i8254_restore __P((void)); +void timer_restore __P((void)); #endif /* _KERNEL */ |