summaryrefslogtreecommitdiff
path: root/sys/kern/kern_condvar.c
Commit message (Expand)AuthorAgeFilesLines
* Add missing ; in last commitPeter Wemm2001-09-191-1/+1
* Use a 'p' variable instead of repetitively indirecting td->td_proc forJohn Baldwin2001-09-181-17/+20
* KSE Milestone 2Julian Elischer2001-09-121-143/+147
* - Fix a bug in the previous workaround for the tsleep/endtsleep race.John Baldwin2001-08-211-6/+28
* Backout mwakeup, etc.Jake Burkholder2001-07-061-39/+0
* Implement mwakeup, mwakeup_one, cv_signal_drop and cv_broadcast_drop.Jake Burkholder2001-07-041-0/+39
* - Lock CURSIG with the proc lock and don't release the proc lock untilJohn Baldwin2001-06-221-4/+10
* Undo part of the tangle of having sys/lock.h and sys/mutex.h included inMark Murray2001-05-011-1/+2
* Pass in a pointer to the mutex's lock_object as the second argument toJohn Baldwin2001-03-281-4/+4
* Rework the witness code to work with sx locks as well as mutexes.John Baldwin2001-03-281-8/+8
* Use the proc lock to protect access to p_sigacts->ps_sigintr.John Baldwin2001-03-071-4/+4
* Implement a unified run queue and adjust priority levels accordingly.Jake Burkholder2001-02-121-5/+1
* Change and clean the mutex lock interface.Bosko Milekic2001-02-091-30/+30
* Catch up to P_FOO -> PS_FOO changes in proc flags.John Baldwin2001-01-241-16/+15
* Implement condition variables.Jason Evans2001-01-161-0/+547