Searched refs:profhz (Results 1 - 10 of 10) sorted by relevance

/freebsd-11-stable/lib/libc/gmon/
H A Dgmon.c143 clockinfo.profhz = hertz();
144 } else if (clockinfo.profhz == 0) {
146 clockinfo.profhz = clockinfo.hz;
148 clockinfo.profhz = hertz();
179 hdr->profrate = clockinfo.profhz;
/freebsd-11-stable/sys/arm/xscale/ixp425/
H A Dixp425_timer.c164 * We only have one timer available; stathz and profhz are
172 if (profhz != 0)
173 printf("Cannot get %d Hz profclock\n", profhz);
174 profhz = 0;
/freebsd-11-stable/sys/arm/xscale/i8134x/
H A Di80321_timer.c370 * We only have one timer available; stathz and profhz are
378 if (profhz != 0)
379 printf("Cannot get %d Hz profclock\n", profhz);
380 profhz = 0;
/freebsd-11-stable/sys/kern/
H A Dkern_clock.c370 * profiling. This profile clock runs at profhz. We require that profhz
374 * profhz/stathz for statistics. (For profiling, every tick counts.)
382 int profhz; variable
409 * Compute profhz/stathz, and fix profhz if needed.
412 if (profhz == 0)
413 profhz = i;
414 psratio = profhz / i;
834 clkinfo.profhz
[all...]
H A Dkern_clocksource.c432 while (freq < (profiling ? profhz : stathz))
634 * We would like profhz to run as often as possible.
656 profhz = stathz;
657 while ((profhz + stathz) <= 128 * 64)
658 profhz += stathz;
659 profhz = round_freq(timer, profhz);
663 profhz = round_freq(timer, stathz * 64);
669 profperiod = SBT_1S / profhz;
H A Dsubr_prof.c354 gp->profrate = profhz;
/freebsd-11-stable/sys/sys/
H A Dkernel.h64 extern int profhz; /* profiling clock's frequency */
H A Dtime.h379 int profhz; /* profiling clock frequency */ member in struct:clockinfo
/freebsd-11-stable/usr.sbin/kgmon/
H A Dkgmon.c475 clockrate.profhz = 1;
479 return (clockrate.profhz);
/freebsd-11-stable/sbin/sysctl/
H A Dsysctl.c603 printf(hflag ? "{ hz = %'d, tick = %'d, profhz = %'d, stathz = %'d }" :
604 "{ hz = %d, tick = %d, profhz = %d, stathz = %d }",
605 ci->hz, ci->tick, ci->profhz, ci->stathz);

Completed in 103 milliseconds