aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_tc.c
Commit message (Expand)AuthorAgeFilesLines
* Remove conditionally compiled time counter statistics; tools likeRobert Watson2009-04-111-31/+0
* By default, don't compile in counters of calls to various timeRobert Watson2009-03-081-13/+18
* In keeping with style(9)'s recommendations on macros, use a ';'Robert Watson2008-03-161-1/+1
* Fix typo in comment.Warner Losh2008-02-171-1/+1
* Note what is too {short,long}.David E. O'Brien2008-01-021-2/+2
* Despite several examples in the kernel, the third argument ofDavid Malone2007-06-041-3/+3
* Commit the results of the typo hunt by Darren Pilgrim.Yaroslav Tykhiy2006-08-041-1/+1
* Add a kern.timecounter.tc sysctl tree that contains the mask,David Malone2006-06-161-0/+40
* Disable the "cputick increased..." message now that the dust has settled.Poul-Henning Kamp2006-03-151-1/+1
* Oops, forgot newline.Poul-Henning Kamp2006-03-091-1/+1
* silence cpu_tick calibration and notice only (under bootverbose)Poul-Henning Kamp2006-03-091-15/+8
* Style nit.John Baldwin2006-03-071-2/+1
* Add missing cast.Poul-Henning Kamp2006-03-041-1/+1
* More detailed logging if timestepwarnings are enabled.Poul-Henning Kamp2006-03-041-5/+8
* Suffer a little bit of math every 16 second and tighten calibration ofPoul-Henning Kamp2006-03-021-12/+24
* CPU time accounting speedup (step 2)Poul-Henning Kamp2006-02-111-5/+133
* Modify the way we account for CPU time spent (step 1)Poul-Henning Kamp2006-02-071-0/+21
* Start time_uptime with 1 instead of 0.Andre Oppermann2005-09-191-1/+1
* Forward declaring static variables as extern is invalid ISO-C. Now thatDavid E. O'Brien2005-09-071-1/+1
* s/ENOTTY/ENOIOCTL/Poul-Henning Kamp2005-03-261-1/+1
* Put on my peril sensitive sunglasses and add a flags field to the internalPeter Wemm2004-10-111-2/+17
* Add some KASSERTS.Poul-Henning Kamp2004-08-141-0/+3
* Just because the timecounter reads the same value on two samplesPoul-Henning Kamp2004-03-041-4/+0
* Write 100 times for tomorrow:Poul-Henning Kamp2004-01-221-2/+3
* Add a sysctl (default: off) which enables a log(LOG_INFO...) warningPoul-Henning Kamp2004-01-211-10/+19
* Various minor details:Poul-Henning Kamp2003-11-131-8/+17
* Use the quality to disable timecounters for which we deem Hz too low.Poul-Henning Kamp2003-09-031-6/+10
* bde made a number of suggested improvements to the code. This commitWarner Losh2003-08-201-20/+17
* Fix an extreme edge case in leap second handling. We need to callWarner Losh2003-08-201-4/+6
* Give timecounters a numeric quality field.Poul-Henning Kamp2003-08-161-8/+35
* Remove extra space.Maxime Henrion2003-08-121-1/+1
* typo fix in comment.Poul-Henning Kamp2003-07-021-1/+1
* Fix leap second processing by the kernel time keeping routines.Warner Losh2003-06-251-6/+27
* Use UTC rather than GMT to describe time scale. latter is obsolete.Warner Losh2003-06-231-2/+2
* Use __FBSDID().David E. O'Brien2003-06-111-2/+3
* Including <sys/stdint.h> is (almost?) universally only to be able to usePoul-Henning Kamp2003-03-181-1/+0
* Move timecounters notion of frequency to 64 bits.Poul-Henning Kamp2003-01-291-3/+4
* Add sysctl kern.timecounter.nsetclock which indicates the number ofPoul-Henning Kamp2003-01-251-0/+2
* Move a local variable to avoid the compiler warning about it being unused.Poul-Henning Kamp2003-01-161-1/+2
* hardpps() wants the raw hardware counter value converted to nanoseconds.John Hay2003-01-161-7/+7
* Explicitly have the timecounter init happen after the cpu_initclocks isPeter Wemm2003-01-061-1/+1
* Export tc_tick with sysctl, not tick.Poul-Henning Kamp2003-01-041-1/+1
* Introduce a "time_uptime" global variable which holds the time since bootPoul-Henning Kamp2002-11-011-0/+2
* Use strlcpy() instead of strncpy() to copy NUL terminated stringsRobert Drehmel2002-10-171-2/+2
* Do not employ timecounter hardware if our hz does not support theirPoul-Henning Kamp2002-09-041-2/+10
* Give up on calling tc_ticktock() from a timeout, we have timeoutPoul-Henning Kamp2002-09-041-4/+6
* Use a semicolon at the end of a function-like macro invocation. KillsMark Murray2002-07-151-1/+1
* Time counter stats are unsigned, advertise them to sysctl(8) that way.Kelly Yancey2002-06-111-1/+1
* Mistyped and lost a '&' in previous commit.Poul-Henning Kamp2002-05-301-1/+1
* Don't forget to factor in the boottime when we calculate PPS timestamps.Poul-Henning Kamp2002-05-301-0/+1