summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_time.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* On resume, run forward the monotonic and realtimes clocks instead of jumpingguenther2012-05-241-2/+2
* Make rusage totals, itimers, and profile settings per-process insteadguenther2012-03-231-25/+23
* Add tracing and dumping of "pointer to struct" syscall arguments forguenther2012-03-191-3/+41
* Add PS_EXITING to better differentiate between the process exiting andguenther2012-03-101-2/+2
* lots of SCARG simplification. ok matthewtedu2010-06-301-56/+69
* clock_gettime(CLOCK_PROF) didn't account for the time between the lastart2010-06-281-3/+8
* clock_settime() should cancel an in-progress adjtime() just likeguenther2010-04-041-25/+25
* Convert thrsleep() to an absolute timeout with clockid to eliminate aguenther2009-11-271-15/+34
* cancel the timeout upon disabling profiling / virtual timer; somartynas2009-10-161-1/+5
* abort any time adjustment in progress if the clock is set with settimeofdayckuethe2009-06-051-13/+27
* system/5918: fix clearing of ITIMER_VIRTUAL and ITIMER_PROF it_intervaldjm2008-09-191-4/+4
* ratecheck(9) only seems to be used to limit things to very coarse intervalsdlg2008-04-041-2/+2
* Do not lose nanosleep() return value in the last copyout if nonzero; PR#5697miod2008-01-021-3/+5
* Implement clock_gettime(CLOCK_PROF) since it's so simple.art2007-04-041-4/+6
* Fix getitimer to use uptime as setitimer does. Fixes bad output fromart2007-01-101-2/+2
* Timecounter based implementation of adjfreq(2). Largely from art@otto2006-10-301-4/+12
* Normalize the correction passed to adjtime(2) before using it in thekettenis2006-06-291-1/+10
* Adapt adjtime() code and put in a better stub for adjfreq() for theotto2006-06-271-9/+19
* Make sys_adjfreq() compile on archs that use timecountersjsg2006-06-151-1/+3
* Introducing adjfreq(2), to adjust the clock frequency.otto2006-06-141-1/+34
* Allow any user to request the current adjustment; ok henning@ deraadt@otto2006-06-041-1/+8
* revert auto-skew. some ntpd implementations interact poorly.tedu2006-01-201-47/+9
* auto adjusting adjtime. be more responsive to large clock deltas,tedu2006-01-131-9/+47
* ansi/deregister.jsg2005-11-281-63/+26
* make sure ppsratecheck() returns 0 if maxpps is 0;markus2005-10-271-2/+4
* In realitexpire(), do not re-add the itimer timeout if the process is inaaron2005-10-131-2/+3
* Avoid arithmetic overflows in computation of adjtime(). Fixes adjusting in theotto2005-10-101-3/+16
* Protect p_timer with splclock. It can be fiddled with in hardclock (butart2005-05-311-1/+5
* sched work by niklas and art backed out; causes panicsderaadt2005-05-291-5/+1
* This patch is mortly art's work and was done *a year* ago. Art wants to thankniklas2005-05-251-1/+5
* This touches only MI code, and adds new time keeping code. Thetholo2004-07-281-1/+70
* Don't sleep forever on short nanosleeps.nordin2004-06-261-2/+3
* This moves access to wall and uptime variables in MI code,tholo2004-06-241-85/+59
* First step towards more sane time handling in the kernel -- this changestholo2004-06-211-2/+2
* debranch SMP, have funniklas2004-06-131-2/+2
* Merge in a piece of the SMP branch into HEAD.art2004-06-091-1/+12
* pretty code that's easier to read, same effect.tedu2004-02-151-4/+8
* match syscallargs comments with realityhenning2003-09-011-5/+5
* fix sys_clock_settime. hint from nordin@ ok deraadt@tedu2003-08-261-6/+4
* change arguments to suser. suser now takes the process, and a flagstedu2003-08-151-4/+6
* implement CLOCK_MONOTONIC from NetBSD; ok marc@kevlo2003-08-111-14/+33
* Remove the advertising clause in the UCB license which Berkeleymillert2003-06-021-6/+2
* no need for nfs headers since nqnfs had been removed way long time agomickey2003-05-191-7/+1
* which is int not u_int so check for negative values. ok deraadt@, art@nordin2002-10-021-5/+5
* Avoid time wrap at securelevel 2. ok millert@ fgsch@nordin2002-07-251-44/+39
* Remove unnecessary spllowersoftclock(). ok art@nordin2002-06-111-2/+1
* First round of __P removal in sysmillert2002-03-141-3/+3
* Repeat. But this time get the math right and avoid sleeping forever.art2002-02-171-15/+19
* undo latest commit for now, it breaks nanosleeppvalchev2002-02-151-17/+17
* Don't get confused in nanosleep(2) when the time changes.art2002-02-151-17/+17