summaryrefslogtreecommitdiff
path: root/sys/kern/kern_kse.c
Commit message (Expand)AuthorAgeFilesLines
* Commit 7/14 of sched_lock decomposition.Jeff Roberson2007-06-041-58/+82
* Rename the 'mtx_object', 'rw_object', and 'sx_object' members of mutexes,John Baldwin2007-03-211-1/+1
* After the last change to KSE threading a bug was introduced whereJulian Elischer2007-03-071-44/+34
* - Remove setrunqueue and replace it with direct calls to sched_add().Jeff Roberson2007-01-231-3/+3
* Fix a potential point of confusion. Art Ironport we've seen this end upJulian Elischer2006-12-121-3/+6
* Threading cleanup.. part 2 of several.Julian Elischer2006-12-061-215/+114
* Make KSE a kernel option, turned on by default in all GENERICJohn Birrell2006-10-261-0/+28
* Close some races between procfs/ptrace and exit(2):John Baldwin2006-02-221-2/+16
* Fix a long standing race between sleep queue and threadDavid Xu2006-02-151-1/+1
* - Always call exec_free_args() in kern_execve() instead of doing it in allJohn Baldwin2006-02-061-1/+0
* Cleanup some signal interfaces. Now the tdsignal function acceptsDavid Xu2005-11-031-1/+1
* 1. Change prototype of trapsignal and sendsig to use ksiginfo_t *, mostDavid Xu2005-10-141-8/+9
* Fox a LOR of sleep and sched_lock by using a timeout waitDavid Xu2005-09-301-1/+1
* Add witness warnings to panic if a thread tries to exit while holding anyJohn Baldwin2005-09-021-0/+2
* Add missing brackets.David Xu2005-08-191-1/+1
* Fix a LOR between sched_lock and sleep queue lock.David Xu2005-08-191-5/+4
* Fix a typo in a comment.John Baldwin2005-06-231-1/+1
* Remove thread_upcall_check, it was used to avoid race bug in earlierDavid Xu2005-05-271-10/+0
* Change cpu_set_kse_upcall to more generic style, so we can reuse itDavid Xu2005-04-231-2/+4
* Drop bzero and shove the responsibility of zeroing the kse upcallChristian S.J. Peron2005-02-241-2/+1
* o Split out kernel part of execve(2) syscall into two parts: one thatMaxim Sobolev2005-01-291-1/+7
* /* -> /*- for copyright notices, minor format tweaks as necessaryWarner Losh2005-01-061-1/+1
* - Remove a 4BSD specific hack since this will work on ULE too.Jeff Roberson2004-12-261-4/+0
* Remove local definitions of RANGEOF() and use __rangeof() instead.David Schultz2004-11-201-7/+5
* Add an execve command for kse_thr_interrupt to allow libpthread toDavid Xu2004-10-071-0/+17
* Restore some code removed in revision 1.193 and 1.194, julian saidDavid Xu2004-10-061-4/+23
* light rearrangement of some code to get some lockingJulian Elischer2004-10-051-15/+27
* Break out to a separate function, the code to revert a multithreadedJulian Elischer2004-10-051-2/+1
* - Assert sched_lock in upcall_remove() since it is needed there and allJohn Baldwin2004-09-231-1/+3
* Various small style fixes.John Baldwin2004-09-221-7/+7
* Refactor a bunch of scheduler code to give basically the same behaviourJulian Elischer2004-09-051-36/+57
* Give setrunqueue() and sched_add() more of a clue as toJulian Elischer2004-09-011-2/+2
* Remove TDP_USTATCLOCK, we no longer need it because we now alwaysDavid Xu2004-08-311-55/+30
* Remove an unneeded argument..Julian Elischer2004-08-311-2/+2
* 1. try to use existing mailbox address in thread_update_usr_ticks.David Xu2004-08-281-4/+6
* Move TDF_CAN_UNBIND to thread private flags td_pflags, this eliminatesDavid Xu2004-08-281-19/+4
* Remove checking of single exit flag in thread_user_enter(), this isDavid Xu2004-08-231-12/+0
* Slight changes to comments and some whitespace changes.Julian Elischer2004-08-091-3/+10
* 1.Add KSE_INTR_DBSUSPEND command for kse_thr_interrupt to suspend a boundDavid Xu2004-08-081-29/+46
* s/TMDF_DONOTRUNUSER/TMDF_SUSPEND/gDavid Xu2004-08-031-2/+2
* Repeat after me:Julian Elischer2004-08-031-0/+1
* Remove an argument that is never used.Julian Elischer2004-08-021-7/+6
* Add what appears to be a missing '*/' at the end of a comment.Robert Watson2004-08-021-0/+1
* Comment kse_create() and make a few minor code cleanupsJulian Elischer2004-08-011-47/+121
* When calling scheduler entrypoints for creating new threads and processes,Julian Elischer2004-07-181-2/+2
* - Move TDF_OWEPREEMPT, TDF_OWEUPC, and TDF_USTATCLOCK over to td_pflagsJohn Baldwin2004-07-161-5/+4
* Add code to support debugging threaded process.David Xu2004-07-131-75/+153
* Change kse_switchin to accept kse_thr_mailbox pointer, the syscallDavid Xu2004-07-121-9/+20
* Allocate TIDs in thread_init() and deallocate them in thread_fini().Marcel Moolenaar2004-06-261-3/+1
* Shuffle some code around.Julian Elischer2004-06-111-42/+25