HomeSort by: relevance | last modified time | path
    Searched defs:threadpool (Results 1 - 3 of 3) sorted by relevancy

  /src/external/cddl/osnet/sys/kern/
taskq.c 39 #include <sys/threadpool.h>
44 struct threadpool_job te_job; /* Threadpool job serving the queue. */
60 struct threadpool *tq_threadpool; /* Pool backing the jobs. */
69 * Threadpool job to service tasks from task queue.
260 struct threadpool *threadpool; local
266 if (threadpool_get(&threadpool, pri) != 0)
287 tq->tq_threadpool = threadpool;
  /src/sys/kern/
kern_threadpool.c 103 #include <sys/threadpool.h>
107 SDT_PROBE_DEFINE1(sdt, kernel, threadpool, get,
109 SDT_PROBE_DEFINE1(sdt, kernel, threadpool, get__create,
111 SDT_PROBE_DEFINE1(sdt, kernel, threadpool, get__race,
113 SDT_PROBE_DEFINE2(sdt, kernel, threadpool, put,
114 "struct threadpool *"/*pool*/, "pri_t"/*pri*/);
115 SDT_PROBE_DEFINE2(sdt, kernel, threadpool, put__destroy,
116 "struct threadpool *"/*pool*/, "pri_t"/*pri*/);
118 SDT_PROBE_DEFINE1(sdt, kernel, threadpool, percpu__get,
120 SDT_PROBE_DEFINE1(sdt, kernel, threadpool, percpu__get__create
190 struct threadpool { struct
    [all...]
vfs_vnode.c 177 #include <sys/threadpool.h>
210 static struct threadpool *threadpool; variable in typeref:struct:threadpool
438 error = threadpool_get(&threadpool, PRI_NONE);
550 threadpool_schedule_job(threadpool, &vrele_job);
552 threadpool_schedule_job(threadpool, &vdrain_job);
702 * threadpool task to keep the number of vnodes below desiredvnodes.
718 * threadpool task to process asynchronous vrele.

Completed in 59 milliseconds