summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_task.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* we want to defer work traditionally (in openbsd) handled in andlg2015-02-091-16/+46
* remove the second void * argument on tasks.dlg2015-01-271-6/+4
* add a few sizes to freetedu2014-11-011-3/+3
* make workq/taskq runner threads yield when they've hogged the cpublambert2014-10-081-2/+4
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-3/+3
* Create system taskq ("systqmp") which runs without the kernel lock;blambert2014-06-111-1/+13
* Fix typo; that teaches me to steal other people's diffs!kettenis2013-12-111-2/+2
* Add infrastructure to create un-biglocked task queues. Stolen from blambert@kettenis2013-12-101-1/+15
* simplify kthread_create(). no more stdargderaadt2013-11-181-2/+2
* deprecate taskq_systq() and replace it with extern struct taskqdlg2013-10-301-8/+4
* since taskq_create is only callable from autoconf or process context, itdlg2013-10-291-2/+2
* sys/task.h includes sys/queue.h, so kern/kern_task.c doesnt needdlg2013-10-291-3/+1
* use unsigned int instead of u_int to reduce the depend on types.h.dlg2013-10-291-4/+4
* introduce tasks and taskqs as an alternative to workqs.dlg2013-10-291-0/+258