| Commit message (Expand) | Author | Age | Files | Lines |
* | Use scheduler API sched_relinquish() to implement yield() syscall. | davidxu | 2006-06-15 | 1 | -8/+2 |
* | In the case of reentering the debugger due to an attempt to perform a | jhb | 2006-06-03 | 1 | -10/+10 |
* | Change msleep() and tsleep() to not alter the calling thread's priority | jhb | 2006-04-17 | 1 | -3/+5 |
* | Fix a sleep queue race for KSE thread. | davidxu | 2006-02-23 | 1 | -18/+4 |
* | Fixup some comments. Mutexes's are locked, not entered for several years | jhb | 2006-02-22 | 1 | -5/+5 |
* | Fix a long standing race between sleep queue and thread | davidxu | 2006-02-15 | 1 | -8/+2 |
* | CPU time accounting speedup (step 2) | phk | 2006-02-11 | 1 | -0/+6 |
* | Modify the way we account for CPU time spent (step 1) | phk | 2006-02-07 | 1 | -5/+4 |
* | patch(1) and I aren't friends today. Axe a duplicate copy of | jhb | 2005-12-29 | 1 | -82/+0 |
* | Add a new function msleep_spin() which is a slightly stripped down version | jhb | 2005-12-29 | 1 | -0/+164 |
* | When checking to see if a process has exceeded its time limit, flag the | jhb | 2005-11-28 | 1 | -2/+2 |
* | Use low level constructs borrowed from interrupt threads to wait for | ups | 2005-05-23 | 1 | -4/+3 |
* | Sprinkle some volatile magic and rearrange things a bit to avoid race | ups | 2005-04-08 | 1 | -1/+1 |
* | Don't recursively panic when we call mi_switch() in a critical section, | jhb | 2005-03-31 | 1 | -1/+1 |
* | Stop explicitly touching td_base_pri outside of the scheduler and simply | jhb | 2004-12-30 | 1 | -2/+0 |
* | - Define KTR points for KTR_SCHED. | jeff | 2004-12-26 | 1 | -0/+17 |
* | Unlock mutex if PDROP was set by caller. | davidxu | 2004-11-27 | 1 | -0/+2 |
* | If a process needs to be swapped in, wakeup the swapper from within | scottl | 2004-10-16 | 1 | -5/+5 |
* | Refine the turnstile and sleep queue interfaces just a bit: | jhb | 2004-10-12 | 1 | -3/+4 |
* | Rework how we store process times in the kernel such that we always store | jhb | 2004-10-05 | 1 | -3/+3 |
* | clean up thread runq accounting a bit. | julian | 2004-09-16 | 1 | -1/+1 |
* | Add some code to allow threads to nominat a sibling to run if theyu are going... | julian | 2004-09-10 | 1 | -1/+1 |
* | Refactor a bunch of scheduler code to give basically the same behaviour | julian | 2004-09-05 | 1 | -3/+3 |
* | Now that the return value semantics of cv's for multithreaded processes | jhb | 2004-08-19 | 1 | -28/+16 |
* | Increase the amount of data exported by KTR in the KTR_RUNQ setting. | julian | 2004-08-09 | 1 | -4/+4 |
* | Workaround a possible deadlock on SMP due to a spin lock LOR by disabling | jhb | 2004-08-04 | 1 | -0/+6 |
* | Use P_SINGLE_EXIT to check single-threading case, P_WEXIT is not for that | davidxu | 2004-07-28 | 1 | -1/+1 |
* | - Move TDF_OWEPREEMPT, TDF_OWEUPC, and TDF_USTATCLOCK over to td_pflags | jhb | 2004-07-16 | 1 | -1/+2 |
* | Update for the KDB framework: | marcel | 2004-07-10 | 1 | -9/+5 |
* | Implement preemption of kernel threads natively in the scheduler rather | jhb | 2004-07-02 | 1 | -1/+4 |
* | - Change mi_switch() and sched_switch() to accept an optional thread to | jhb | 2004-07-02 | 1 | -3/+3 |
* | Remove the signal_caught argument from sleepq_timedwait() as it was | jhb | 2004-06-28 | 1 | -1/+1 |
* | Remove a stale and misleading comment. | tjr | 2004-06-07 | 1 | -7/+0 |
* | Fixed some common printf format errors. Don't assume that "struct foo *" | bde | 2004-05-14 | 1 | -19/+14 |
* | Remove advertising clause from University of California Regent's license, | imp | 2004-04-05 | 1 | -4/+0 |
* | - Remove old sleep queues. | jhb | 2004-03-12 | 1 | -13/+1 |
* | Mark loadaverage callout as CALLOUT_MPSAFE. | rwatson | 2004-03-08 | 1 | -1/+1 |
* | Correct handling of PDROP in msleep() to just skip the mtx_lock() rather | jhb | 2004-03-02 | 1 | -3/+1 |
* | Switch the sleep/wakeup and condition variable implementations to use the | jhb | 2004-02-27 | 1 | -217/+81 |
* | - Revert rev 1.240 we no longer need a kthread for loadav(). | jeff | 2004-02-01 | 1 | -31/+12 |
* | - Use sched_load() rather than grabbing the sx lock and traversing the proc | jeff | 2004-02-01 | 1 | -20/+2 |
* | Move the loadav() callout into its own kthread since it uses allproc_lock | jhb | 2004-01-28 | 1 | -12/+31 |
* | - Use a unique string for the sched_setup SYSINIT and rename sched_setup to | jeff | 2004-01-25 | 1 | -3/+3 |
* | - Add a flags parameter to mi_switch. The value of flags may be SW_VOL or | jeff | 2004-01-25 | 1 | -7/+10 |
* | Removed mostly-dead code for setting switchtime after the idle loop | bde | 2003-10-29 | 1 | -8/+2 |
* | - Collapse sched_switchin() and sched_switchout() into sched_switch(). Now | jeff | 2003-10-16 | 1 | -12/+1 |
* | Add a pre-emption counter, td_generation, so that threads can notice | bms | 2003-10-05 | 1 | -0/+2 |
* | - On my Pentium4-M laptop, invalpg takes ~1100 cycles if the page is found in | jeff | 2003-09-30 | 1 | -8/+0 |
* | Change instances of callout_init that specify MPSAFE behaviour to | sam | 2003-08-19 | 1 | -1/+1 |
* | - Various style fixes in both code and comments. | jhb | 2003-08-15 | 1 | -18/+16 |