index
:
src
cvs/HEAD
kms/intel
kms/radeon
master
OpenBSD base system
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
sys
/
kern
/
kern_task.c
Age
Commit message (
Expand
)
Author
2022-08-15
Revert previous. It was not ok'ed by dlg@.
Vitaliy Makkoveev
2022-08-15
Stop doing lockless `t_flags' check within task_add(9) and task_del(9).
Vitaliy Makkoveev
2020-08-01
Add support for remote coverage to kcov. Remote coverage is collected
anton
2020-06-11
whitespace and speeling fix in a comment. no functional change.
David Gwynne
2020-06-11
make taskq_barrier wait for pending tasks, not just the running tasks.
David Gwynne
2020-06-07
add support for running taskq_barrier from a task inside the taskq.
David Gwynne
2019-12-19
Convert infinite sleeps to {m,t}sleep_nsec(9).
Martin Pieuchot
2019-06-23
Make taskq_barrier(9) work for multi-threaded task queues.
Mark Kettenis
2019-04-28
add WITNESS support to barriers modelled on the timeout stuff visa did.
David Gwynne
2019-04-01
deprecate TASKQ_CANTSLEEP since nothing uses it anymore
David Gwynne
2018-12-16
add task_pending
David Gwynne
2017-12-14
replace the bare sleep state handling in barriers with wait cond code
David Gwynne
2017-11-13
add taskq_barrier
David Gwynne
2017-10-30
Let witness(4) differentiate between taskq mutexes to avoid
Visa Hankala
2017-02-14
Convert most of the manual checks for CPU hogging to sched_pause().
Martin Pieuchot
2016-08-11
shuffle some code to make it more symmetrical.
David Gwynne
2015-12-08
tweak whitespace in struct definition. no functional change.
David Gwynne
2015-12-08
use struct task_list instead of TAILQ_HEAD(, task)
David Gwynne
2015-11-19
dont try and wakeup other threads to handle pending work when we
David Gwynne
2015-02-09
we want to defer work traditionally (in openbsd) handled in an
David Gwynne
2015-01-27
remove the second void * argument on tasks.
David Gwynne
2014-11-01
add a few sizes to free
Ted Unangst
2014-10-08
make workq/taskq runner threads yield when they've hogged the cpu
Bret Lambert
2014-07-12
add a size argument to free. will be used soon, but for now default to 0.
Ted Unangst
2014-06-11
Create system taskq ("systqmp") which runs without the kernel lock;
Bret Lambert
2013-12-11
Fix typo; that teaches me to steal other people's diffs!
Mark Kettenis
2013-12-10
Add infrastructure to create un-biglocked task queues. Stolen from blambert@
Mark Kettenis
2013-11-18
simplify kthread_create(). no more stdarg
Theo de Raadt
2013-10-30
deprecate taskq_systq() and replace it with extern struct taskq
David Gwynne
2013-10-29
since taskq_create is only callable from autoconf or process context, it
David Gwynne
2013-10-29
sys/task.h includes sys/queue.h, so kern/kern_task.c doesnt need
David Gwynne
2013-10-29
use unsigned int instead of u_int to reduce the depend on types.h.
David Gwynne
2013-10-29
introduce tasks and taskqs as an alternative to workqs.
David Gwynne