diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | kern/mach_clock.c | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,7 @@ 2007-02-05 Thomas Schwinge <tschwinge@gnu.org> + * kern/mach_clock.c: Don't include <kern/time_out.h>. + * i386/i386/hardclock.c: Include <kern/mach_clock.h> instead of <kern/time_out.h>. * i386/i386/pit.c: Likewise. diff --git a/kern/mach_clock.c b/kern/mach_clock.c index 5491e88..22c4a74 100644 --- a/kern/mach_clock.c +++ b/kern/mach_clock.c @@ -46,13 +46,13 @@ #include <kern/debug.h> #include <kern/host.h> #include <kern/lock.h> +#include <kern/mach_clock.h> #include <kern/mach_param.h> #include <kern/processor.h> #include <kern/queue.h> #include <kern/sched.h> #include <kern/sched_prim.h> #include <kern/thread.h> -#include <kern/time_out.h> #include <kern/time_stamp.h> #include <kern/timer.h> #include <vm/vm_kern.h> @@ -64,8 +64,6 @@ #include <kern/pc_sample.h> #endif -#include "mach_clock.h" - void softclock(); /* forward */ int hz = HZ; /* number of ticks per second */ |