Age | Commit message (Expand) | Author |
2017-05-18 | Do not panic if we find ourself on the sleep queue while being SONPROC. | Martin Pieuchot |
2017-04-20 | Hook up mutex(9) to witness(4). | Visa Hankala |
2017-04-20 | Hook up rwlock(9) to witness(4). | Visa Hankala |
2017-01-31 | Remove the inifioctl hack, checking for an unheld NET_LOCK() in | Martin Pieuchot |
2017-01-25 | Introduce a hack to remove false-positives when looking for memory | Martin Pieuchot |
2017-01-21 | p_comm is the process's command and isn't per thread, so move it from | Philip Guenther |
2016-09-13 | Introduce rwsleep(9), an equivalent to msleep(9) but for code protected | Martin Pieuchot |
2016-09-03 | Remove ticket lock support from thrsleep. It's unused. | Michal Mazurek |
2016-07-06 | fix several places where calculating ticks could overflow. | Ted Unangst |
2016-07-04 | switch calculuated thrsleep timeout to unsigned to prevent overflow | Ted Unangst |
2016-03-29 | add back $OpenBSD$ | Jonathan Gray |
2016-03-28 | Make sure that a thread that calls sched_yield(2) ends up on the run queue | Mark Kettenis |
2016-03-09 | Correct some comments and definitions, from Michal Mazurek. | Martin Pieuchot |
2016-02-01 | add a DIAGNOSTIC for refcnt_take overflow. | David Gwynne |
2016-01-15 | KASSERT on refcnt underflow. | David Gwynne |
2015-11-23 | Do not include <sys/atomic.h> inside <sys/refcnt.h>. | Martin Pieuchot |
2015-09-28 | satisfy RAMDISK by placing cold == 2 case inside #ifdef DDB | Theo de Raadt |
2015-09-28 | In low-level suspend routines, set cold=2. In tsleep(), use this to | Theo de Raadt |
2015-09-11 | introduce a wrapper around reference counts called refcnt. | David Gwynne |
2015-09-07 | Delete ktracing of context switches: it's unused, and not particularly useful, | Philip Guenther |
2015-05-12 | Drop and reacquire the kernel lock in the vfs_shutdown and "cold" | Mike Belopuhov |
2015-05-07 | msleep(9) must prevent kernel from attempting a context switch | Mike Belopuhov |
2015-03-14 | Remove some includes include-what-you-use claims don't | Jonathan Gray |
2015-02-10 | assert that we hold the scheduler lock in unsleep() | Bret Lambert |
2015-02-09 | we want to defer work traditionally (in openbsd) handled in an | David Gwynne |
2014-07-08 | decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.h | Theo de Raadt |
2014-03-22 | Move p_sigacts from struct proc to struct process. | Philip Guenther |
2014-01-23 | msleep() with a NULL mtx argument is a programming error. | Philip Guenther |
2014-01-23 | Waiting on a condition without a lock is an error: you need *some* lock | Philip Guenther |
2013-12-24 | get rid of if (timeout_pending()) timeout_del(). this is racy. any | David Gwynne |
2013-11-25 | rename magicnumber to globalsleepaddr | Ted Unangst |
2013-11-18 | hack in a global rendezvous for interprocess semaphores to use | Ted Unangst |
2013-11-09 | Add KASSERT()s to tsleep() and msleep() to verify that bogus flags | Philip Guenther |
2013-09-14 | Snapshots for all archs have been built, so remove the T32 code | Philip Guenther |
2013-08-13 | Switch time_t, ino_t, clock_t, and struct kevent's ident and data | Philip Guenther |
2013-06-01 | cleanup and consolidate the spinlock_lock (what a name!) code. | Ted Unangst |
2013-04-06 | rthreads are always enabled. remove the sysctl. | Ted Unangst |
2012-08-21 | Stop "inlining" setrunnable() we already had two bugs because of it. | Christiano F. Haesbaert |
2012-07-10 | We should only call need_resched() if the priority is lower than the | Christiano F. Haesbaert |
2012-04-10 | When converting the timeout to ticks, both round up and add one to account | Philip Guenthe |
2012-03-23 | Make rusage totals, itimers, and profile settings per-process instead | Philip Guenthe |
2012-03-19 | Add tracing and dumping of "pointer to struct" syscall arguments for | Philip Guenthe |
2012-01-17 | Reimplement mutexes, condvars, and rwlocks to eliminate bugs, | Philip Guenthe |
2011-12-11 | Suspend other rthreads before dumping core or execing; make them exit | Philip Guenthe |
2011-07-07 | Functions used in files other than where they are defined should be | Philip Guenthe |
2011-01-25 | Don't ignore copyout() return value in sys_thrsleep(). | Stefan Sperling |
2010-06-29 | Eliminate RTHREADS kernel option in favor of a sysctl. The actual status | Ted Unangst |
2010-06-10 | Declare safepri at the MD level on each platform, so that the kern_synch.c | Theo de Raadt |
2009-12-27 | Correct previous commit: match the errno return by thrsleep() in | Philip Guenthe |
2009-11-27 | Convert thrsleep() to an absolute timeout with clockid to eliminate a | Philip Guenthe |