Make stathz match reality on platforms like the 4100 where hz!=1024
It might be more correct to make stathz as close as possible to 128, but that would involve adding complexity to the clock intr path, which I don't want to do.
This commit is contained in:
parent
0d13a85094
commit
c97305e4f3
@ -257,7 +257,7 @@ cpu_initclocks()
|
||||
tc_init(&alpha_timecounter);
|
||||
}
|
||||
|
||||
stathz = 128;
|
||||
stathz = hz / 8;
|
||||
platform.clockintr = (void (*) __P((void *))) handleclock;
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user