Query: get_cyclecount
OS: freebsd
Section: 9
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
GET_CYCLECOUNT(9) BSD Kernel Developer's Manual GET_CYCLECOUNT(9)NAMEget_cyclecount -- get the CPU's fast counter register contentsSYNOPSIS#include <sys/param.h> #include <sys/systm.h> #include <machine/cpu.h> uint64_t get_cyclecount(void);DESCRIPTIONThe get_cyclecount() function uses a register available in most modern CPUs to return a value that is monotonically increasing inside each CPU. On SMP systems, there will be a number of separate monotonic sequences, one for each CPU running. The value in the SMP case is selected from one of these sequences, dependent on which CPU was scheduled to service the request. The speed and the maximum value of each counter is CPU-dependent. Some CPUs (such as the Intel 80486) do not have such a register, so get_cyclecount() on these platforms returns a (monotonic) combination of numbers represented by the structure returned by binuptime(9). The AMD64 and Intel 64 processors use the TSC register.SEE ALSObinuptime(9)HISTORYThe get_cyclecount() function first appeared in FreeBSD 5.0.AUTHORSThis manual page was written by Mark Murray <markm@FreeBSD.org>.BSDMarch 15, 2011 BSD
Related Man Pages |
---|
pmccontrol(8) - freebsd |
get_cyclecount(9) - debian |
cpuset_isset(3) - netbsd |
i386_pmc_startstop(2) - netbsd |
smp(4) - freebsd |
Similar Topics in the Unix Linux Community |
---|
Scripts without shebang |
Reason for no directory creation date |
Valid separator in time and date format |
Controlling user input |