Lines Matching refs:stathz
219 * We assume that hz is either stathz or profhz, and that neither will
227 if (new_hz == stathz)
253 if (stathz == 0)
254 stathz = hz;
255 else if (stathz < 50 || COUNTS_PER_SEC % stathz) {
256 printf("cannot get %d Hz statclock; using 100 Hz\n", stathz);
257 stathz = 100;
261 profhz = stathz * 5;
262 else if (profhz < stathz || COUNTS_PER_SEC % profhz) {
264 stathz);
265 profhz = stathz;
269 statint = COUNTS_PER_SEC / stathz;
287 printf("clock: hz=%d stathz = %d profhz = %d\n", hz, stathz, profhz);