| Kernel v2.4.6 /kernel/timer.c |
|---|
 2.4.6
 kernel
 timer.c
diff -u --recursive --new-file v2.4.5/linux/kernel/timer.c linux/kernel/timer.c
--- v2.4.5/linux/kernel/timer.c Sun Dec 10 09:53:19 2000
+++ linux/kernel/timer.c Tue Jun 12 16:40:11 2001
@@ -32,7 +32,7 @@
long tick = (1000000 + HZ/2) / HZ; /* timer interrupt period */
/* The current time */
-volatile struct timeval xtime __attribute__ ((aligned (16)));
+struct timeval xtime __attribute__ ((aligned (16)));
/* Don't completely fail for HZ > 500. */
int tickadj = 500/HZ ? : 1; /* microsecs */
|